@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,1488 +1,1488 @@
1
- // This file is auto-generated by @hey-api/openapi-ts
2
-
3
- export type PagedResultDto_TagListItemDto = {
4
- items?: Array<UniRefund_TagService_Tags_TagListItemDto> | null;
5
- totalCount?: number;
6
- };
7
-
8
- export type TagPagedAndSortedResultResponseDto_TagListItemDto = {
9
- items?: Array<UniRefund_TagService_Tags_TagListItemDto> | null;
10
- totalCount?: number;
11
- };
12
-
13
- export type UniRefund_ExportValidationService_ExportValidations_ExportValidationDto = {
14
- id?: string;
15
- tagId?: string | null;
16
- exportLocationId?: string;
17
- referenceId?: string | null;
18
- exportDate?: string;
19
- status?: UniRefund_ExportValidationService_ExportValidations_ExportValidationStatusCode;
20
- stampType?: UniRefund_ExportValidationService_ExportValidations_StampTypeCode;
21
- initialValidationResult?: UniRefund_ExportValidationService_ExportValidations_ValidationResult;
22
- finalValidationResult?: UniRefund_ExportValidationService_ExportValidations_ValidationResult;
23
- };
24
-
25
- export type UniRefund_ExportValidationService_ExportValidations_ExportValidationStatusCode = 'None' | 'Waiting' | 'Approved' | 'Rejected' | 'Expired';
26
-
27
- export type UniRefund_ExportValidationService_ExportValidations_StampTypeCode = 'None' | 'Integration' | 'DigitalStamp';
28
-
29
- export type UniRefund_ExportValidationService_ExportValidations_ValidationResult = 'None' | 'Green';
30
-
31
- export type UniRefund_TagService_Billings_BillingDto = {
32
- id?: string;
33
- billingDate?: string | null;
34
- billingNumber?: string | null;
35
- status?: number | null;
36
- };
37
-
38
- export type UniRefund_TagService_ExportValidations_ExportValidationDto = {
39
- id?: string;
40
- endpointId?: string | null;
41
- referenceId?: string | null;
42
- date?: string | null;
43
- status?: UniRefund_ExportValidationService_ExportValidations_ExportValidationStatusCode;
44
- stampType?: UniRefund_ExportValidationService_ExportValidations_StampTypeCode;
45
- };
46
-
47
- export type UniRefund_TagService_Invoices_InvoiceDto = {
48
- id?: string;
49
- number?: string | null;
50
- issueDate: string;
51
- totalAmount: number;
52
- vatAmount: number;
53
- currency?: string | null;
54
- invoiceLines?: Array<UniRefund_TagService_Invoices_InvoiceLineDto> | null;
55
- };
56
-
57
- export type UniRefund_TagService_Invoices_InvoiceLineDto = {
58
- id?: string;
59
- productGroup?: string | null;
60
- description?: string | null;
61
- amount: number;
62
- taxRate: number;
63
- taxAmount: number;
64
- taxBase: number;
65
- currency?: string | null;
66
- };
67
-
68
- export type UniRefund_TagService_Invoices_InvoiceRequestDto = {
69
- id?: string | null;
70
- uuid: string;
71
- invoiceNumber?: string | null;
72
- issueDate: string;
73
- amountPaid: number;
74
- vatAmount: number;
75
- taxTotals: Array<UniRefund_TagService_Tags_TaxTotalDto>;
76
- };
77
-
78
- export type UniRefund_TagService_Merchants_MerchantDetailDto = {
79
- id?: string;
80
- name?: string | null;
81
- address?: UniRefund_TagService_Tags_AddressDto;
82
- productGroups?: Array<UniRefund_TagService_Tags_ProductGroupDto> | null;
83
- };
84
-
85
- export type UniRefund_TagService_Merchants_MerchantRequestDto = {
86
- vatNumber: string;
87
- countryCode: string;
88
- branchId: string;
89
- };
90
-
91
- export type UniRefund_TagService_Refunds_RefundDto = {
92
- id?: string;
93
- submissionDate?: string | null;
94
- paidDate?: string | null;
95
- refundLocation?: string | null;
96
- status?: number | null;
97
- refundMethod?: UniRefund_TagService_Tags_Enums_RefundType;
98
- };
99
-
100
- export type UniRefund_TagService_Tags_AddressDto = {
101
- id?: string;
102
- fullText?: string | null;
103
- };
104
-
105
- export type UniRefund_TagService_Tags_CreateTagRequestDto = {
106
- merchant: UniRefund_TagService_Merchants_MerchantRequestDto;
107
- traveller: UniRefund_TagService_Travellers_TravellerRequestDto;
108
- invoices: Array<UniRefund_TagService_Invoices_InvoiceRequestDto>;
109
- exportValidation?: UniRefund_TagService_Tags_ExportValidationRequestDto;
110
- };
111
-
112
- export type UniRefund_TagService_Tags_Enums_RefundType = 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
113
-
114
- export type UniRefund_TagService_Tags_ExportValidationRequestDto = {
115
- exportDate?: string | null;
116
- exportLocationId?: string;
117
- referenceId?: string | null;
118
- responseCode?: string | null;
119
- description?: string | null;
120
- };
121
-
122
- export type UniRefund_TagService_Tags_ProductGroupDto = {
123
- id?: string;
124
- description?: string | null;
125
- };
126
-
127
- export type UniRefund_TagService_Tags_SetTagRefundRequestDto = {
128
- tagRefunds?: Array<UniRefund_TagService_Tags_SetTagRefundRequestItemDto> | null;
129
- refundId?: string;
130
- refundType?: UniRefund_TagService_Tags_Enums_RefundType;
131
- refundDate?: string;
132
- status?: UniRefund_TagService_Tags_TagStatusType;
133
- refundPointId?: string;
134
- };
135
-
136
- export type UniRefund_TagService_Tags_SetTagRefundRequestItemDto = {
137
- id?: string;
138
- refundAmount?: number;
139
- refundCurrency?: string | null;
140
- refundRate?: number;
141
- travellerFeeAmount?: number;
142
- agentFeeAmount?: number;
143
- };
144
-
145
- export type UniRefund_TagService_Tags_SetTagRefundResponseDto = {
146
- earlyRefundExpiryDate?: string | null;
147
- };
148
-
149
- export type UniRefund_TagService_Tags_SetTagVATStatementHeaderIdRequestDto = {
150
- tagIdAndVATStatementHeaderIdPairs?: Array<UniRefund_TagService_Tags_TagIdAndVATStatementHeaderIdPairDto> | null;
151
- };
152
-
153
- export type UniRefund_TagService_Tags_TagDetailDto = {
154
- id?: string;
155
- tagNumber: string;
156
- status: UniRefund_TagService_Tags_TagStatusType;
157
- refundType?: UniRefund_TagService_Tags_Enums_RefundType;
158
- issueDate: string;
159
- expireDate?: string | null;
160
- merchant?: UniRefund_TagService_Merchants_MerchantDetailDto;
161
- traveller?: UniRefund_TagService_Travellers_TravellerDetailDto;
162
- exportValidation?: UniRefund_TagService_ExportValidations_ExportValidationDto;
163
- refund?: UniRefund_TagService_Refunds_RefundDto;
164
- billing?: UniRefund_TagService_Billings_BillingDto;
165
- invoices?: Array<UniRefund_TagService_Invoices_InvoiceDto> | null;
166
- totals?: Array<UniRefund_TagService_Tags_TagTotalDto> | null;
167
- };
168
-
169
- export type UniRefund_TagService_Tags_TagDetailForRefundDto = {
170
- id?: string;
171
- tagNumber: string;
172
- status: UniRefund_TagService_Tags_TagStatusType;
173
- issueDate: string;
174
- expireDate?: string | null;
175
- merchant?: UniRefund_TagService_Merchants_MerchantDetailDto;
176
- exportValidation?: UniRefund_TagService_ExportValidations_ExportValidationDto;
177
- billing?: UniRefund_TagService_Billings_BillingDto;
178
- invoices?: Array<UniRefund_TagService_Invoices_InvoiceDto> | null;
179
- totals?: Array<UniRefund_TagService_Tags_TagTotalDto> | null;
180
- };
181
-
182
- export type UniRefund_TagService_Tags_TagDto = {
183
- id?: string;
184
- tagNumber: string;
185
- status: UniRefund_TagService_Tags_TagStatusType;
186
- refundType?: UniRefund_TagService_Tags_Enums_RefundType;
187
- issueDate: string;
188
- expireDate?: string | null;
189
- exportValidationId?: string | null;
190
- refundId?: string | null;
191
- vatStatementHeaderId?: string | null;
192
- merchantId?: string | null;
193
- travellerId?: string | null;
194
- travelDocumentNumber?: string | null;
195
- tripId?: string | null;
196
- refundTableId?: string | null;
197
- rebateTableId?: string | null;
198
- contractHeaderId?: string | null;
199
- totals?: Array<UniRefund_TagService_Tags_TagTotalDto> | null;
200
- };
201
-
202
- export type UniRefund_TagService_Tags_TagIdAndVATStatementHeaderIdPairDto = {
203
- tagId: string;
204
- vatStatementHeaderId: string;
205
- };
206
-
207
- export type UniRefund_TagService_Tags_TagListItemDto = {
208
- id?: string;
209
- tagNumber: string;
210
- issueDate: string;
211
- expireDate?: string | null;
212
- travellerFullName: string;
213
- travellerDocumentNumber: string;
214
- merchantTitle: string;
215
- status: UniRefund_TagService_Tags_TagStatusType;
216
- totals?: Array<UniRefund_TagService_Tags_TagTotalDto> | null;
217
- };
218
-
219
- export type UniRefund_TagService_Tags_TagListSummaryDto = {
220
- totalSalesAmount: number;
221
- totalRefundAmount: number;
222
- currency: string;
223
- };
224
-
225
- export type UniRefund_TagService_Tags_TagRefundFeesDto = {
226
- id: string;
227
- touristFee: number;
228
- agentFee: number;
229
- netRefundAmount: number;
230
- };
231
-
232
- export type UniRefund_TagService_Tags_TagStatusType = 'None' | 'Open' | 'PreIssued' | 'Issued' | 'WaitingGoodsValidation' | 'WaitingStampValidation' | 'Declined' | 'ExportValidated' | 'PaymentBlocked' | 'PaymentInProgress' | 'PaymentProblem' | 'Paid' | 'Cancelled' | 'Expired' | 'Correction' | 'OptedOut';
233
-
234
- export type UniRefund_TagService_Tags_TagSumTagsForVATStatementTagDetailResponseDto = {
235
- tagId: string;
236
- merchantId: string;
237
- tagNumber: string;
238
- refundDate: string;
239
- grandTotal: number;
240
- taxAmount: number;
241
- refundAmount: number;
242
- currency: string;
243
- };
244
-
245
- export type UniRefund_TagService_Tags_TagSumTagsResponseDto = {
246
- tagRefundFees?: Array<UniRefund_TagService_Tags_TagRefundFeesDto> | null;
247
- travellerId?: string;
248
- travellerDocumentNumber?: string | null;
249
- refundCurrency?: string | null;
250
- status?: UniRefund_TagService_Tags_TagStatusType;
251
- };
252
-
253
- export type UniRefund_TagService_Tags_TagTotalDto = {
254
- totalType: UniRefund_TagService_Tags_TotalType;
255
- amount: number;
256
- description?: string | null;
257
- currency: string;
258
- rate: number;
259
- };
260
-
261
- export type UniRefund_TagService_Tags_TagValidForVATStatementResponseDto = {
262
- tagId: string;
263
- merchantId: string;
264
- contractHeaderId: string;
265
- tagNumber: string;
266
- invoiceId?: string | null;
267
- taxRate?: number | null;
268
- taxBase: number;
269
- taxAmount: number;
270
- grandTotal: number;
271
- refundDate: string;
272
- refundAmount: number;
273
- currency: string;
274
- tenantId?: string | null;
275
- };
276
-
277
- export type UniRefund_TagService_Tags_TaxTotalDto = {
278
- taxRate: number;
279
- taxTotal: number;
280
- taxableAmount: number;
281
- };
282
-
283
- export type UniRefund_TagService_Tags_TotalType = 'None' | 'SalesAmount' | 'VatAmount' | 'GrossRefund' | 'RefundFee' | 'AgentRefundFee' | 'Refund';
284
-
285
- export type UniRefund_TagService_Tags_UpdateTagDto = {
286
- tagNumber?: string | null;
287
- refundType?: UniRefund_TagService_Tags_Enums_RefundType;
288
- issueDate?: string;
289
- expireDate?: string | null;
290
- exportValidationId?: string | null;
291
- refundId?: string | null;
292
- vatStatementHeaderId?: string | null;
293
- merchantId?: string | null;
294
- travellerId?: string | null;
295
- tripId?: string | null;
296
- refundTableId?: string | null;
297
- rebateTableId?: string | null;
298
- contractHeaderId?: string | null;
299
- totals?: Array<UniRefund_TagService_Tags_TagTotalDto> | null;
300
- };
301
-
302
- export type UniRefund_TagService_Travellers_TravellerDetailDto = {
303
- id?: string;
304
- travelDocumentNumber?: string | null;
305
- countryOfResidence?: string | null;
306
- nationality?: string | null;
307
- firstname?: string | null;
308
- lastname?: string | null;
309
- };
310
-
311
- export type UniRefund_TagService_Travellers_TravellerRequestDto = {
312
- id?: string | null;
313
- travelDocumentNumber: string;
314
- nationalityCountryCode2: string;
315
- firstName: string;
316
- lastName: string;
317
- residenceCountryCode2: string;
318
- expirationDate?: string | null;
319
- birthDate?: string | null;
320
- };
321
-
322
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
323
- grantedPolicies?: {
324
- [key: string]: (boolean);
325
- } | null;
326
- };
327
-
328
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
329
- localization?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto;
330
- auth?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto;
331
- setting?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto;
332
- currentUser?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto;
333
- features?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto;
334
- globalFeatures?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto;
335
- multiTenancy?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto;
336
- currentTenant?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto;
337
- timing?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto;
338
- clock?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto;
339
- objectExtensions?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto;
340
- extraProperties?: {
341
- [key: string]: unknown;
342
- } | null;
343
- };
344
-
345
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto = {
346
- values?: {
347
- [key: string]: (string | null);
348
- } | null;
349
- };
350
-
351
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto = {
352
- enabledFeatures?: Array<(string)> | null;
353
- };
354
-
355
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto = {
356
- values?: {
357
- [key: string]: {
358
- [key: string]: (string);
359
- };
360
- } | null;
361
- resources?: {
362
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
363
- } | null;
364
- languages?: Array<Volo_Abp_Localization_LanguageInfo> | null;
365
- currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
366
- defaultResourceName?: string | null;
367
- languagesMap?: {
368
- [key: string]: Array<Volo_Abp_NameValue>;
369
- } | null;
370
- languageFilesMap?: {
371
- [key: string]: Array<Volo_Abp_NameValue>;
372
- } | null;
373
- };
374
-
375
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
376
- resources?: {
377
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
378
- } | null;
379
- currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
380
- };
381
-
382
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto = {
383
- texts?: {
384
- [key: string]: (string);
385
- } | null;
386
- baseResources?: Array<(string)> | null;
387
- };
388
-
389
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto = {
390
- values?: {
391
- [key: string]: (string | null);
392
- } | null;
393
- };
394
-
395
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto = {
396
- kind?: string | null;
397
- };
398
-
399
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto = {
400
- displayName?: string | null;
401
- englishName?: string | null;
402
- threeLetterIsoLanguageName?: string | null;
403
- twoLetterIsoLanguageName?: string | null;
404
- isRightToLeft?: boolean;
405
- cultureName?: string | null;
406
- name?: string | null;
407
- nativeName?: string | null;
408
- dateTimeFormat?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto;
409
- };
410
-
411
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
412
- isAuthenticated?: boolean;
413
- id?: string | null;
414
- tenantId?: string | null;
415
- impersonatorUserId?: string | null;
416
- impersonatorTenantId?: string | null;
417
- impersonatorUserName?: string | null;
418
- impersonatorTenantName?: string | null;
419
- userName?: string | null;
420
- name?: string | null;
421
- surName?: string | null;
422
- email?: string | null;
423
- emailVerified?: boolean;
424
- phoneNumber?: string | null;
425
- phoneNumberVerified?: boolean;
426
- roles?: Array<(string)> | null;
427
- sessionId?: string | null;
428
- };
429
-
430
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto = {
431
- calendarAlgorithmType?: string | null;
432
- dateTimeFormatLong?: string | null;
433
- shortDatePattern?: string | null;
434
- fullDateTimePattern?: string | null;
435
- dateSeparator?: string | null;
436
- shortTimePattern?: string | null;
437
- longTimePattern?: string | null;
438
- };
439
-
440
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone = {
441
- timeZoneName?: string | null;
442
- };
443
-
444
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
445
- properties?: {
446
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto;
447
- } | null;
448
- configuration?: {
449
- [key: string]: unknown;
450
- } | null;
451
- };
452
-
453
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
454
- fields?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto> | null;
455
- localizationResource?: string | null;
456
- };
457
-
458
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto = {
459
- name?: string | null;
460
- value?: unknown;
461
- };
462
-
463
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto = {
464
- isAvailable?: boolean;
465
- };
466
-
467
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
468
- onGet?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto;
469
- onCreate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto;
470
- onUpdate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto;
471
- };
472
-
473
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
474
- isAvailable?: boolean;
475
- };
476
-
477
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto = {
478
- isAvailable?: boolean;
479
- };
480
-
481
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto = {
482
- typeSimple?: string | null;
483
- config?: {
484
- [key: string]: unknown;
485
- } | null;
486
- };
487
-
488
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
489
- type?: string | null;
490
- typeSimple?: string | null;
491
- displayName?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto;
492
- api?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto;
493
- ui?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto;
494
- attributes?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto> | null;
495
- configuration?: {
496
- [key: string]: unknown;
497
- } | null;
498
- defaultValue?: unknown;
499
- };
500
-
501
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
502
- onTable?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto;
503
- onCreateForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
504
- onEditForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
505
- lookup?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto;
506
- };
507
-
508
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
509
- isVisible?: boolean;
510
- };
511
-
512
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto = {
513
- url?: string | null;
514
- resultListPropertyName?: string | null;
515
- displayPropertyName?: string | null;
516
- valuePropertyName?: string | null;
517
- filterParamName?: string | null;
518
- };
519
-
520
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto = {
521
- isVisible?: boolean;
522
- };
523
-
524
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto = {
525
- name?: string | null;
526
- resource?: string | null;
527
- };
528
-
529
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto = {
530
- entities?: {
531
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto;
532
- } | null;
533
- configuration?: {
534
- [key: string]: unknown;
535
- } | null;
536
- };
537
-
538
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto = {
539
- modules?: {
540
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto;
541
- } | null;
542
- enums?: {
543
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto;
544
- } | null;
545
- };
546
-
547
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
548
- iana?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone;
549
- windows?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone;
550
- };
551
-
552
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
553
- timeZone?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone;
554
- };
555
-
556
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone = {
557
- timeZoneId?: string | null;
558
- };
559
-
560
- export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto = {
561
- id?: string | null;
562
- name?: string | null;
563
- isAvailable?: boolean;
564
- };
565
-
566
- export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto = {
567
- isEnabled?: boolean;
568
- };
569
-
570
- export type Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
571
- uniqueName?: string | null;
572
- name?: string | null;
573
- httpMethod?: string | null;
574
- url?: string | null;
575
- supportedVersions?: Array<(string)> | null;
576
- parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
577
- parameters?: Array<Volo_Abp_Http_Modeling_ParameterApiDescriptionModel> | null;
578
- returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
579
- allowAnonymous?: boolean | null;
580
- implementFrom?: string | null;
581
- };
582
-
583
- export type Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
584
- modules?: {
585
- [key: string]: Volo_Abp_Http_Modeling_ModuleApiDescriptionModel;
586
- } | null;
587
- types?: {
588
- [key: string]: Volo_Abp_Http_Modeling_TypeApiDescriptionModel;
589
- } | null;
590
- };
591
-
592
- export type Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
593
- controllerName?: string | null;
594
- controllerGroupName?: string | null;
595
- isRemoteService?: boolean;
596
- isIntegrationService?: boolean;
597
- apiVersion?: string | null;
598
- type?: string | null;
599
- interfaces?: Array<Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel> | null;
600
- actions?: {
601
- [key: string]: Volo_Abp_Http_Modeling_ActionApiDescriptionModel;
602
- } | null;
603
- };
604
-
605
- export type Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
606
- type?: string | null;
607
- name?: string | null;
608
- methods?: Array<Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel> | null;
609
- };
610
-
611
- export type Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
612
- name?: string | null;
613
- parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
614
- returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
615
- };
616
-
617
- export type Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel = {
618
- name?: string | null;
619
- typeAsString?: string | null;
620
- type?: string | null;
621
- typeSimple?: string | null;
622
- isOptional?: boolean;
623
- defaultValue?: unknown;
624
- };
625
-
626
- export type Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
627
- rootPath?: string | null;
628
- remoteServiceName?: string | null;
629
- controllers?: {
630
- [key: string]: Volo_Abp_Http_Modeling_ControllerApiDescriptionModel;
631
- } | null;
632
- };
633
-
634
- export type Volo_Abp_Http_Modeling_ParameterApiDescriptionModel = {
635
- nameOnMethod?: string | null;
636
- name?: string | null;
637
- jsonName?: string | null;
638
- type?: string | null;
639
- typeSimple?: string | null;
640
- isOptional?: boolean;
641
- defaultValue?: unknown;
642
- constraintTypes?: Array<(string)> | null;
643
- bindingSourceId?: string | null;
644
- descriptorName?: string | null;
645
- };
646
-
647
- export type Volo_Abp_Http_Modeling_PropertyApiDescriptionModel = {
648
- name?: string | null;
649
- jsonName?: string | null;
650
- type?: string | null;
651
- typeSimple?: string | null;
652
- isRequired?: boolean;
653
- minLength?: number | null;
654
- maxLength?: number | null;
655
- minimum?: string | null;
656
- maximum?: string | null;
657
- regex?: string | null;
658
- };
659
-
660
- export type Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel = {
661
- type?: string | null;
662
- typeSimple?: string | null;
663
- };
664
-
665
- export type Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
666
- baseType?: string | null;
667
- isEnum?: boolean;
668
- enumNames?: Array<(string)> | null;
669
- enumValues?: Array<unknown> | null;
670
- genericArguments?: Array<(string)> | null;
671
- properties?: Array<Volo_Abp_Http_Modeling_PropertyApiDescriptionModel> | null;
672
- };
673
-
674
- export type Volo_Abp_Http_RemoteServiceErrorInfo = {
675
- code?: string | null;
676
- message?: string | null;
677
- details?: string | null;
678
- data?: {
679
- [key: string]: unknown;
680
- } | null;
681
- validationErrors?: Array<Volo_Abp_Http_RemoteServiceValidationErrorInfo> | null;
682
- };
683
-
684
- export type Volo_Abp_Http_RemoteServiceErrorResponse = {
685
- error?: Volo_Abp_Http_RemoteServiceErrorInfo;
686
- };
687
-
688
- export type Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
689
- message?: string | null;
690
- members?: Array<(string)> | null;
691
- };
692
-
693
- export type Volo_Abp_Localization_LanguageInfo = {
694
- cultureName?: string | null;
695
- uiCultureName?: string | null;
696
- displayName?: string | null;
697
- readonly twoLetterISOLanguageName?: string | null;
698
- };
699
-
700
- export type Volo_Abp_NameValue = {
701
- name?: string | null;
702
- value?: string | null;
703
- };
704
-
705
- export type GetApiAbpApiDefinitionData = {
706
- includeTypes?: boolean;
707
- };
708
-
709
- export type GetApiAbpApiDefinitionResponse = Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
710
-
711
- export type GetApiAbpApplicationConfigurationData = {
712
- includeLocalizationResources?: boolean;
713
- };
714
-
715
- export type GetApiAbpApplicationConfigurationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
716
-
717
- export type GetApiAbpApplicationLocalizationData = {
718
- cultureName: string;
719
- onlyDynamics?: boolean;
720
- };
721
-
722
- export type GetApiAbpApplicationLocalizationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
723
-
724
- export type PostApiTagServiceTagData = {
725
- requestBody?: UniRefund_TagService_Tags_CreateTagRequestDto;
726
- };
727
-
728
- export type PostApiTagServiceTagResponse = UniRefund_TagService_Tags_TagDto;
729
-
730
- export type GetApiTagServiceTagData = {
731
- exportEndDate?: string;
732
- exportStartDate?: string;
733
- invoiceNumber?: string;
734
- issuedEndDate?: string;
735
- issuedStartDate?: string;
736
- maxResultCount?: number;
737
- merchantIds?: Array<(string)>;
738
- paidEndDate?: string;
739
- paidStartDate?: string;
740
- refundTypes?: Array<UniRefund_TagService_Tags_Enums_RefundType>;
741
- skipCount?: number;
742
- sorting?: string;
743
- statuses?: Array<UniRefund_TagService_Tags_TagStatusType>;
744
- tagNumber?: string;
745
- travellerDocumentNumber?: string;
746
- travellerFullName?: string;
747
- travellerIds?: Array<(string)>;
748
- };
749
-
750
- export type GetApiTagServiceTagResponse = TagPagedAndSortedResultResponseDto_TagListItemDto;
751
-
752
- export type PutApiTagServiceTagByIdData = {
753
- id: string;
754
- requestBody?: UniRefund_TagService_Tags_UpdateTagDto;
755
- };
756
-
757
- export type PutApiTagServiceTagByIdResponse = UniRefund_TagService_Tags_TagDto;
758
-
759
- export type DeleteApiTagServiceTagByIdData = {
760
- id: string;
761
- };
762
-
763
- export type DeleteApiTagServiceTagByIdResponse = unknown;
764
-
765
- export type GetApiTagServiceTagByIdDetailData = {
766
- id: string;
767
- };
768
-
769
- export type GetApiTagServiceTagByIdDetailResponse = UniRefund_TagService_Tags_TagDetailDto;
770
-
771
- export type GetApiTagServiceTagTagsRefundData = {
772
- isExportValidated: boolean;
773
- maxResultCount?: number;
774
- refundPointId: string;
775
- refundType: UniRefund_TagService_Tags_Enums_RefundType;
776
- skipCount?: number;
777
- travellerDocumentNumber: string;
778
- };
779
-
780
- export type GetApiTagServiceTagTagsRefundResponse = PagedResultDto_TagListItemDto;
781
-
782
- export type GetApiTagServiceTagSummaryData = {
783
- exportEndDate?: string;
784
- exportStartDate?: string;
785
- invoiceNumber?: string;
786
- issuedEndDate?: string;
787
- issuedStartDate?: string;
788
- maxResultCount?: number;
789
- merchantIds?: Array<(string)>;
790
- paidEndDate?: string;
791
- paidStartDate?: string;
792
- refundTypes?: Array<UniRefund_TagService_Tags_Enums_RefundType>;
793
- skipCount?: number;
794
- sorting?: string;
795
- statuses?: Array<UniRefund_TagService_Tags_TagStatusType>;
796
- tagNumber?: string;
797
- travellerDocumentNumber?: string;
798
- travellerFullName?: string;
799
- travellerIds?: Array<(string)>;
800
- };
801
-
802
- export type GetApiTagServiceTagSummaryResponse = UniRefund_TagService_Tags_TagListSummaryDto;
803
-
804
- export type GetApiTagServiceTagTagsRefundFeesData = {
805
- refundDate: string;
806
- refundPointId: string;
807
- refundType: UniRefund_TagService_Tags_Enums_RefundType;
808
- tagIds: Array<(string)>;
809
- };
810
-
811
- export type GetApiTagServiceTagTagsRefundFeesResponse = Array<UniRefund_TagService_Tags_TagRefundFeesDto>;
812
-
813
- export type PutApiTagServiceTagExportValidationByIdData = {
814
- id: string;
815
- requestBody?: UniRefund_TagService_Tags_ExportValidationRequestDto;
816
- };
817
-
818
- export type PutApiTagServiceTagExportValidationByIdResponse = UniRefund_ExportValidationService_ExportValidations_ExportValidationDto;
819
-
820
- export type GetIntegrationApiTagsSumData = {
821
- ids: Array<(string)>;
822
- refundDate: string;
823
- refundPointId: string;
824
- refundType: UniRefund_TagService_Tags_Enums_RefundType;
825
- };
826
-
827
- export type GetIntegrationApiTagsSumResponse = UniRefund_TagService_Tags_TagSumTagsResponseDto;
828
-
829
- export type GetIntegrationApiTagsSumForVatStatementData = {
830
- tagIds?: Array<(string)>;
831
- };
832
-
833
- export type GetIntegrationApiTagsSumForVatStatementResponse = Array<UniRefund_TagService_Tags_TagSumTagsForVATStatementTagDetailResponseDto>;
834
-
835
- export type PutIntegrationApiTagsRefundData = {
836
- requestBody?: UniRefund_TagService_Tags_SetTagRefundRequestDto;
837
- };
838
-
839
- export type PutIntegrationApiTagsRefundResponse = UniRefund_TagService_Tags_SetTagRefundResponseDto;
840
-
841
- export type GetIntegrationApiTagsDetailsListForRefundData = {
842
- tagIds?: Array<(string)>;
843
- };
844
-
845
- export type GetIntegrationApiTagsDetailsListForRefundResponse = Array<UniRefund_TagService_Tags_TagDetailForRefundDto>;
846
-
847
- export type GetIntegrationApiTagsValidListForVatStatementData = {
848
- merchantIds?: Array<(string)>;
849
- month?: number;
850
- year?: number;
851
- };
852
-
853
- export type GetIntegrationApiTagsValidListForVatStatementResponse = Array<UniRefund_TagService_Tags_TagValidForVATStatementResponseDto>;
854
-
855
- export type PutIntegrationApiTagsSetVatStatementHeaderIdsOfTagsData = {
856
- requestBody?: UniRefund_TagService_Tags_SetTagVATStatementHeaderIdRequestDto;
857
- };
858
-
859
- export type PutIntegrationApiTagsSetVatStatementHeaderIdsOfTagsResponse = unknown;
860
-
861
- export type $OpenApiTs = {
862
- '/api/abp/api-definition': {
863
- get: {
864
- req: GetApiAbpApiDefinitionData;
865
- res: {
866
- /**
867
- * Success
868
- */
869
- 200: Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
870
- /**
871
- * Bad Request
872
- */
873
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
874
- /**
875
- * Unauthorized
876
- */
877
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
878
- /**
879
- * Forbidden
880
- */
881
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
882
- /**
883
- * Not Found
884
- */
885
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
886
- /**
887
- * Server Error
888
- */
889
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
890
- /**
891
- * Server Error
892
- */
893
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
894
- };
895
- };
896
- };
897
- '/api/abp/application-configuration': {
898
- get: {
899
- req: GetApiAbpApplicationConfigurationData;
900
- res: {
901
- /**
902
- * Success
903
- */
904
- 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
905
- /**
906
- * Bad Request
907
- */
908
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
909
- /**
910
- * Unauthorized
911
- */
912
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
913
- /**
914
- * Forbidden
915
- */
916
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
917
- /**
918
- * Not Found
919
- */
920
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
921
- /**
922
- * Server Error
923
- */
924
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
925
- /**
926
- * Server Error
927
- */
928
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
929
- };
930
- };
931
- };
932
- '/api/abp/application-localization': {
933
- get: {
934
- req: GetApiAbpApplicationLocalizationData;
935
- res: {
936
- /**
937
- * Success
938
- */
939
- 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
940
- /**
941
- * Bad Request
942
- */
943
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
944
- /**
945
- * Unauthorized
946
- */
947
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
948
- /**
949
- * Forbidden
950
- */
951
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
952
- /**
953
- * Not Found
954
- */
955
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
956
- /**
957
- * Server Error
958
- */
959
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
960
- /**
961
- * Server Error
962
- */
963
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
964
- };
965
- };
966
- };
967
- '/api/tag-service/tag': {
968
- post: {
969
- req: PostApiTagServiceTagData;
970
- res: {
971
- /**
972
- * Success
973
- */
974
- 200: UniRefund_TagService_Tags_TagDto;
975
- /**
976
- * Bad Request
977
- */
978
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
979
- /**
980
- * Unauthorized
981
- */
982
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
983
- /**
984
- * Forbidden
985
- */
986
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
987
- /**
988
- * Not Found
989
- */
990
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
991
- /**
992
- * Server Error
993
- */
994
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
995
- /**
996
- * Server Error
997
- */
998
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
999
- };
1000
- };
1001
- get: {
1002
- req: GetApiTagServiceTagData;
1003
- res: {
1004
- /**
1005
- * Success
1006
- */
1007
- 200: TagPagedAndSortedResultResponseDto_TagListItemDto;
1008
- /**
1009
- * Bad Request
1010
- */
1011
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1012
- /**
1013
- * Unauthorized
1014
- */
1015
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1016
- /**
1017
- * Forbidden
1018
- */
1019
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1020
- /**
1021
- * Not Found
1022
- */
1023
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1024
- /**
1025
- * Server Error
1026
- */
1027
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1028
- /**
1029
- * Server Error
1030
- */
1031
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1032
- };
1033
- };
1034
- };
1035
- '/api/tag-service/tag/{id}': {
1036
- put: {
1037
- req: PutApiTagServiceTagByIdData;
1038
- res: {
1039
- /**
1040
- * Success
1041
- */
1042
- 200: UniRefund_TagService_Tags_TagDto;
1043
- /**
1044
- * Bad Request
1045
- */
1046
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1047
- /**
1048
- * Unauthorized
1049
- */
1050
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1051
- /**
1052
- * Forbidden
1053
- */
1054
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1055
- /**
1056
- * Not Found
1057
- */
1058
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1059
- /**
1060
- * Server Error
1061
- */
1062
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1063
- /**
1064
- * Server Error
1065
- */
1066
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1067
- };
1068
- };
1069
- delete: {
1070
- req: DeleteApiTagServiceTagByIdData;
1071
- res: {
1072
- /**
1073
- * Success
1074
- */
1075
- 200: unknown;
1076
- /**
1077
- * Bad Request
1078
- */
1079
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1080
- /**
1081
- * Unauthorized
1082
- */
1083
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1084
- /**
1085
- * Forbidden
1086
- */
1087
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1088
- /**
1089
- * Not Found
1090
- */
1091
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1092
- /**
1093
- * Server Error
1094
- */
1095
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1096
- /**
1097
- * Server Error
1098
- */
1099
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1100
- };
1101
- };
1102
- };
1103
- '/api/tag-service/tag/{id}/detail': {
1104
- get: {
1105
- req: GetApiTagServiceTagByIdDetailData;
1106
- res: {
1107
- /**
1108
- * Success
1109
- */
1110
- 200: UniRefund_TagService_Tags_TagDetailDto;
1111
- /**
1112
- * Bad Request
1113
- */
1114
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1115
- /**
1116
- * Unauthorized
1117
- */
1118
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1119
- /**
1120
- * Forbidden
1121
- */
1122
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1123
- /**
1124
- * Not Found
1125
- */
1126
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1127
- /**
1128
- * Server Error
1129
- */
1130
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1131
- /**
1132
- * Server Error
1133
- */
1134
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1135
- };
1136
- };
1137
- };
1138
- '/api/tag-service/tag/tags-refund': {
1139
- get: {
1140
- req: GetApiTagServiceTagTagsRefundData;
1141
- res: {
1142
- /**
1143
- * Success
1144
- */
1145
- 200: PagedResultDto_TagListItemDto;
1146
- /**
1147
- * Bad Request
1148
- */
1149
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1150
- /**
1151
- * Unauthorized
1152
- */
1153
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1154
- /**
1155
- * Forbidden
1156
- */
1157
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1158
- /**
1159
- * Not Found
1160
- */
1161
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1162
- /**
1163
- * Server Error
1164
- */
1165
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1166
- /**
1167
- * Server Error
1168
- */
1169
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1170
- };
1171
- };
1172
- };
1173
- '/api/tag-service/tag/summary': {
1174
- get: {
1175
- req: GetApiTagServiceTagSummaryData;
1176
- res: {
1177
- /**
1178
- * Success
1179
- */
1180
- 200: UniRefund_TagService_Tags_TagListSummaryDto;
1181
- /**
1182
- * Bad Request
1183
- */
1184
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1185
- /**
1186
- * Unauthorized
1187
- */
1188
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1189
- /**
1190
- * Forbidden
1191
- */
1192
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1193
- /**
1194
- * Not Found
1195
- */
1196
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1197
- /**
1198
- * Server Error
1199
- */
1200
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1201
- /**
1202
- * Server Error
1203
- */
1204
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1205
- };
1206
- };
1207
- };
1208
- '/api/tag-service/tag/tags-refund-fees': {
1209
- get: {
1210
- req: GetApiTagServiceTagTagsRefundFeesData;
1211
- res: {
1212
- /**
1213
- * Success
1214
- */
1215
- 200: Array<UniRefund_TagService_Tags_TagRefundFeesDto>;
1216
- /**
1217
- * Bad Request
1218
- */
1219
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1220
- /**
1221
- * Unauthorized
1222
- */
1223
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1224
- /**
1225
- * Forbidden
1226
- */
1227
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1228
- /**
1229
- * Not Found
1230
- */
1231
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1232
- /**
1233
- * Server Error
1234
- */
1235
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1236
- /**
1237
- * Server Error
1238
- */
1239
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1240
- };
1241
- };
1242
- };
1243
- '/api/tag-service/tag/export-validation/{id}': {
1244
- put: {
1245
- req: PutApiTagServiceTagExportValidationByIdData;
1246
- res: {
1247
- /**
1248
- * Success
1249
- */
1250
- 200: UniRefund_ExportValidationService_ExportValidations_ExportValidationDto;
1251
- /**
1252
- * Bad Request
1253
- */
1254
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1255
- /**
1256
- * Unauthorized
1257
- */
1258
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1259
- /**
1260
- * Forbidden
1261
- */
1262
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1263
- /**
1264
- * Not Found
1265
- */
1266
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1267
- /**
1268
- * Server Error
1269
- */
1270
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1271
- /**
1272
- * Server Error
1273
- */
1274
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1275
- };
1276
- };
1277
- };
1278
- '/integration-api/tags/sum': {
1279
- get: {
1280
- req: GetIntegrationApiTagsSumData;
1281
- res: {
1282
- /**
1283
- * Success
1284
- */
1285
- 200: UniRefund_TagService_Tags_TagSumTagsResponseDto;
1286
- /**
1287
- * Bad Request
1288
- */
1289
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1290
- /**
1291
- * Unauthorized
1292
- */
1293
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1294
- /**
1295
- * Forbidden
1296
- */
1297
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1298
- /**
1299
- * Not Found
1300
- */
1301
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1302
- /**
1303
- * Server Error
1304
- */
1305
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1306
- /**
1307
- * Server Error
1308
- */
1309
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1310
- };
1311
- };
1312
- };
1313
- '/integration-api/tags/sum-for-vat-statement': {
1314
- get: {
1315
- req: GetIntegrationApiTagsSumForVatStatementData;
1316
- res: {
1317
- /**
1318
- * Success
1319
- */
1320
- 200: Array<UniRefund_TagService_Tags_TagSumTagsForVATStatementTagDetailResponseDto>;
1321
- /**
1322
- * Bad Request
1323
- */
1324
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1325
- /**
1326
- * Unauthorized
1327
- */
1328
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1329
- /**
1330
- * Forbidden
1331
- */
1332
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1333
- /**
1334
- * Not Found
1335
- */
1336
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1337
- /**
1338
- * Server Error
1339
- */
1340
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1341
- /**
1342
- * Server Error
1343
- */
1344
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1345
- };
1346
- };
1347
- };
1348
- '/integration-api/tags/refund': {
1349
- put: {
1350
- req: PutIntegrationApiTagsRefundData;
1351
- res: {
1352
- /**
1353
- * Success
1354
- */
1355
- 200: UniRefund_TagService_Tags_SetTagRefundResponseDto;
1356
- /**
1357
- * Bad Request
1358
- */
1359
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1360
- /**
1361
- * Unauthorized
1362
- */
1363
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1364
- /**
1365
- * Forbidden
1366
- */
1367
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1368
- /**
1369
- * Not Found
1370
- */
1371
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1372
- /**
1373
- * Server Error
1374
- */
1375
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1376
- /**
1377
- * Server Error
1378
- */
1379
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1380
- };
1381
- };
1382
- };
1383
- '/integration-api/tags/details-list-for-refund': {
1384
- get: {
1385
- req: GetIntegrationApiTagsDetailsListForRefundData;
1386
- res: {
1387
- /**
1388
- * Success
1389
- */
1390
- 200: Array<UniRefund_TagService_Tags_TagDetailForRefundDto>;
1391
- /**
1392
- * Bad Request
1393
- */
1394
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1395
- /**
1396
- * Unauthorized
1397
- */
1398
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1399
- /**
1400
- * Forbidden
1401
- */
1402
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1403
- /**
1404
- * Not Found
1405
- */
1406
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1407
- /**
1408
- * Server Error
1409
- */
1410
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1411
- /**
1412
- * Server Error
1413
- */
1414
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1415
- };
1416
- };
1417
- };
1418
- '/integration-api/tags/valid-list-for-vat-statement': {
1419
- get: {
1420
- req: GetIntegrationApiTagsValidListForVatStatementData;
1421
- res: {
1422
- /**
1423
- * Success
1424
- */
1425
- 200: Array<UniRefund_TagService_Tags_TagValidForVATStatementResponseDto>;
1426
- /**
1427
- * Bad Request
1428
- */
1429
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1430
- /**
1431
- * Unauthorized
1432
- */
1433
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1434
- /**
1435
- * Forbidden
1436
- */
1437
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1438
- /**
1439
- * Not Found
1440
- */
1441
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1442
- /**
1443
- * Server Error
1444
- */
1445
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1446
- /**
1447
- * Server Error
1448
- */
1449
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1450
- };
1451
- };
1452
- };
1453
- '/integration-api/tags/set-vat-statement-header-ids-of-tags': {
1454
- put: {
1455
- req: PutIntegrationApiTagsSetVatStatementHeaderIdsOfTagsData;
1456
- res: {
1457
- /**
1458
- * Success
1459
- */
1460
- 200: unknown;
1461
- /**
1462
- * Bad Request
1463
- */
1464
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1465
- /**
1466
- * Unauthorized
1467
- */
1468
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1469
- /**
1470
- * Forbidden
1471
- */
1472
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1473
- /**
1474
- * Not Found
1475
- */
1476
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1477
- /**
1478
- * Server Error
1479
- */
1480
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1481
- /**
1482
- * Server Error
1483
- */
1484
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1485
- };
1486
- };
1487
- };
1
+ // This file is auto-generated by @hey-api/openapi-ts
2
+
3
+ export type PagedResultDto_TagListItemDto = {
4
+ items?: Array<UniRefund_TagService_Tags_TagListItemDto> | null;
5
+ totalCount?: number;
6
+ };
7
+
8
+ export type TagPagedAndSortedResultResponseDto_TagListItemDto = {
9
+ items?: Array<UniRefund_TagService_Tags_TagListItemDto> | null;
10
+ totalCount?: number;
11
+ };
12
+
13
+ export type UniRefund_ExportValidationService_ExportValidations_ExportValidationDto = {
14
+ id?: string;
15
+ tagId?: string | null;
16
+ exportLocationId?: string;
17
+ referenceId?: string | null;
18
+ exportDate?: string;
19
+ status?: UniRefund_ExportValidationService_ExportValidations_ExportValidationStatusCode;
20
+ stampType?: UniRefund_ExportValidationService_ExportValidations_StampTypeCode;
21
+ initialValidationResult?: UniRefund_ExportValidationService_ExportValidations_ValidationResult;
22
+ finalValidationResult?: UniRefund_ExportValidationService_ExportValidations_ValidationResult;
23
+ };
24
+
25
+ export type UniRefund_ExportValidationService_ExportValidations_ExportValidationStatusCode = 'None' | 'Waiting' | 'Approved' | 'Rejected' | 'Expired';
26
+
27
+ export type UniRefund_ExportValidationService_ExportValidations_StampTypeCode = 'None' | 'Integration' | 'DigitalStamp';
28
+
29
+ export type UniRefund_ExportValidationService_ExportValidations_ValidationResult = 'None' | 'Green';
30
+
31
+ export type UniRefund_TagService_Billings_BillingDto = {
32
+ id?: string;
33
+ billingDate?: string | null;
34
+ billingNumber?: string | null;
35
+ status?: number | null;
36
+ };
37
+
38
+ export type UniRefund_TagService_ExportValidations_ExportValidationDto = {
39
+ id?: string;
40
+ endpointId?: string | null;
41
+ referenceId?: string | null;
42
+ date?: string | null;
43
+ status?: UniRefund_ExportValidationService_ExportValidations_ExportValidationStatusCode;
44
+ stampType?: UniRefund_ExportValidationService_ExportValidations_StampTypeCode;
45
+ };
46
+
47
+ export type UniRefund_TagService_Invoices_InvoiceDto = {
48
+ id?: string;
49
+ number?: string | null;
50
+ issueDate: string;
51
+ totalAmount: number;
52
+ vatAmount: number;
53
+ currency?: string | null;
54
+ invoiceLines?: Array<UniRefund_TagService_Invoices_InvoiceLineDto> | null;
55
+ };
56
+
57
+ export type UniRefund_TagService_Invoices_InvoiceLineDto = {
58
+ id?: string;
59
+ productGroup?: string | null;
60
+ description?: string | null;
61
+ amount: number;
62
+ taxRate: number;
63
+ taxAmount: number;
64
+ taxBase: number;
65
+ currency?: string | null;
66
+ };
67
+
68
+ export type UniRefund_TagService_Invoices_InvoiceRequestDto = {
69
+ id?: string | null;
70
+ uuid: string;
71
+ invoiceNumber?: string | null;
72
+ issueDate: string;
73
+ amountPaid: number;
74
+ vatAmount: number;
75
+ taxTotals: Array<UniRefund_TagService_Tags_TaxTotalDto>;
76
+ };
77
+
78
+ export type UniRefund_TagService_Merchants_MerchantDetailDto = {
79
+ id?: string;
80
+ name?: string | null;
81
+ address?: UniRefund_TagService_Tags_AddressDto;
82
+ productGroups?: Array<UniRefund_TagService_Tags_ProductGroupDto> | null;
83
+ };
84
+
85
+ export type UniRefund_TagService_Merchants_MerchantRequestDto = {
86
+ vatNumber: string;
87
+ countryCode: string;
88
+ branchId: string;
89
+ };
90
+
91
+ export type UniRefund_TagService_Refunds_RefundDto = {
92
+ id?: string;
93
+ submissionDate?: string | null;
94
+ paidDate?: string | null;
95
+ refundLocation?: string | null;
96
+ status?: number | null;
97
+ refundMethod?: UniRefund_TagService_Tags_Enums_RefundType;
98
+ };
99
+
100
+ export type UniRefund_TagService_Tags_AddressDto = {
101
+ id?: string;
102
+ fullText?: string | null;
103
+ };
104
+
105
+ export type UniRefund_TagService_Tags_CreateTagRequestDto = {
106
+ merchant: UniRefund_TagService_Merchants_MerchantRequestDto;
107
+ traveller: UniRefund_TagService_Travellers_TravellerRequestDto;
108
+ invoices: Array<UniRefund_TagService_Invoices_InvoiceRequestDto>;
109
+ exportValidation?: UniRefund_TagService_Tags_ExportValidationRequestDto;
110
+ };
111
+
112
+ export type UniRefund_TagService_Tags_Enums_RefundType = 'Cash' | 'CreditCard' | 'BankTransfer' | 'Wallet' | 'CashViaPartner';
113
+
114
+ export type UniRefund_TagService_Tags_ExportValidationRequestDto = {
115
+ exportDate?: string | null;
116
+ exportLocationId?: string;
117
+ referenceId?: string | null;
118
+ responseCode?: string | null;
119
+ description?: string | null;
120
+ };
121
+
122
+ export type UniRefund_TagService_Tags_ProductGroupDto = {
123
+ id?: string;
124
+ description?: string | null;
125
+ };
126
+
127
+ export type UniRefund_TagService_Tags_SetTagRefundRequestDto = {
128
+ tagRefunds?: Array<UniRefund_TagService_Tags_SetTagRefundRequestItemDto> | null;
129
+ refundId?: string;
130
+ refundType?: UniRefund_TagService_Tags_Enums_RefundType;
131
+ refundDate?: string;
132
+ status?: UniRefund_TagService_Tags_TagStatusType;
133
+ refundPointId?: string;
134
+ };
135
+
136
+ export type UniRefund_TagService_Tags_SetTagRefundRequestItemDto = {
137
+ id?: string;
138
+ refundAmount?: number;
139
+ refundCurrency?: string | null;
140
+ refundRate?: number;
141
+ travellerFeeAmount?: number;
142
+ agentFeeAmount?: number;
143
+ };
144
+
145
+ export type UniRefund_TagService_Tags_SetTagRefundResponseDto = {
146
+ earlyRefundExpiryDate?: string | null;
147
+ };
148
+
149
+ export type UniRefund_TagService_Tags_SetTagVATStatementHeaderIdRequestDto = {
150
+ tagIdAndVATStatementHeaderIdPairs?: Array<UniRefund_TagService_Tags_TagIdAndVATStatementHeaderIdPairDto> | null;
151
+ };
152
+
153
+ export type UniRefund_TagService_Tags_TagDetailDto = {
154
+ id?: string;
155
+ tagNumber: string;
156
+ status: UniRefund_TagService_Tags_TagStatusType;
157
+ refundType?: UniRefund_TagService_Tags_Enums_RefundType;
158
+ issueDate: string;
159
+ expireDate?: string | null;
160
+ merchant?: UniRefund_TagService_Merchants_MerchantDetailDto;
161
+ traveller?: UniRefund_TagService_Travellers_TravellerDetailDto;
162
+ exportValidation?: UniRefund_TagService_ExportValidations_ExportValidationDto;
163
+ refund?: UniRefund_TagService_Refunds_RefundDto;
164
+ billing?: UniRefund_TagService_Billings_BillingDto;
165
+ invoices?: Array<UniRefund_TagService_Invoices_InvoiceDto> | null;
166
+ totals?: Array<UniRefund_TagService_Tags_TagTotalDto> | null;
167
+ };
168
+
169
+ export type UniRefund_TagService_Tags_TagDetailForRefundDto = {
170
+ id?: string;
171
+ tagNumber: string;
172
+ status: UniRefund_TagService_Tags_TagStatusType;
173
+ issueDate: string;
174
+ expireDate?: string | null;
175
+ merchant?: UniRefund_TagService_Merchants_MerchantDetailDto;
176
+ exportValidation?: UniRefund_TagService_ExportValidations_ExportValidationDto;
177
+ billing?: UniRefund_TagService_Billings_BillingDto;
178
+ invoices?: Array<UniRefund_TagService_Invoices_InvoiceDto> | null;
179
+ totals?: Array<UniRefund_TagService_Tags_TagTotalDto> | null;
180
+ };
181
+
182
+ export type UniRefund_TagService_Tags_TagDto = {
183
+ id?: string;
184
+ tagNumber: string;
185
+ status: UniRefund_TagService_Tags_TagStatusType;
186
+ refundType?: UniRefund_TagService_Tags_Enums_RefundType;
187
+ issueDate: string;
188
+ expireDate?: string | null;
189
+ exportValidationId?: string | null;
190
+ refundId?: string | null;
191
+ vatStatementHeaderId?: string | null;
192
+ merchantId?: string | null;
193
+ travellerId?: string | null;
194
+ travelDocumentNumber?: string | null;
195
+ tripId?: string | null;
196
+ refundTableId?: string | null;
197
+ rebateTableId?: string | null;
198
+ contractHeaderId?: string | null;
199
+ totals?: Array<UniRefund_TagService_Tags_TagTotalDto> | null;
200
+ };
201
+
202
+ export type UniRefund_TagService_Tags_TagIdAndVATStatementHeaderIdPairDto = {
203
+ tagId: string;
204
+ vatStatementHeaderId: string;
205
+ };
206
+
207
+ export type UniRefund_TagService_Tags_TagListItemDto = {
208
+ id?: string;
209
+ tagNumber: string;
210
+ issueDate: string;
211
+ expireDate?: string | null;
212
+ travellerFullName: string;
213
+ travellerDocumentNumber: string;
214
+ merchantTitle: string;
215
+ status: UniRefund_TagService_Tags_TagStatusType;
216
+ totals?: Array<UniRefund_TagService_Tags_TagTotalDto> | null;
217
+ };
218
+
219
+ export type UniRefund_TagService_Tags_TagListSummaryDto = {
220
+ totalSalesAmount: number;
221
+ totalRefundAmount: number;
222
+ currency: string;
223
+ };
224
+
225
+ export type UniRefund_TagService_Tags_TagRefundFeesDto = {
226
+ id: string;
227
+ touristFee: number;
228
+ agentFee: number;
229
+ netRefundAmount: number;
230
+ };
231
+
232
+ export type UniRefund_TagService_Tags_TagStatusType = 'None' | 'Open' | 'PreIssued' | 'Issued' | 'WaitingGoodsValidation' | 'WaitingStampValidation' | 'Declined' | 'ExportValidated' | 'PaymentBlocked' | 'PaymentInProgress' | 'PaymentProblem' | 'Paid' | 'Cancelled' | 'Expired' | 'Correction' | 'OptedOut';
233
+
234
+ export type UniRefund_TagService_Tags_TagSumTagsForVATStatementTagDetailResponseDto = {
235
+ tagId: string;
236
+ merchantId: string;
237
+ tagNumber: string;
238
+ refundDate: string;
239
+ grandTotal: number;
240
+ taxAmount: number;
241
+ refundAmount: number;
242
+ currency: string;
243
+ };
244
+
245
+ export type UniRefund_TagService_Tags_TagSumTagsResponseDto = {
246
+ tagRefundFees?: Array<UniRefund_TagService_Tags_TagRefundFeesDto> | null;
247
+ travellerId?: string;
248
+ travellerDocumentNumber?: string | null;
249
+ refundCurrency?: string | null;
250
+ status?: UniRefund_TagService_Tags_TagStatusType;
251
+ };
252
+
253
+ export type UniRefund_TagService_Tags_TagTotalDto = {
254
+ totalType: UniRefund_TagService_Tags_TotalType;
255
+ amount: number;
256
+ description?: string | null;
257
+ currency: string;
258
+ rate: number;
259
+ };
260
+
261
+ export type UniRefund_TagService_Tags_TagValidForVATStatementResponseDto = {
262
+ tagId: string;
263
+ merchantId: string;
264
+ contractHeaderId: string;
265
+ tagNumber: string;
266
+ invoiceId?: string | null;
267
+ taxRate?: number | null;
268
+ taxBase: number;
269
+ taxAmount: number;
270
+ grandTotal: number;
271
+ refundDate: string;
272
+ refundAmount: number;
273
+ currency: string;
274
+ tenantId?: string | null;
275
+ };
276
+
277
+ export type UniRefund_TagService_Tags_TaxTotalDto = {
278
+ taxRate: number;
279
+ taxTotal: number;
280
+ taxableAmount: number;
281
+ };
282
+
283
+ export type UniRefund_TagService_Tags_TotalType = 'None' | 'SalesAmount' | 'VatAmount' | 'GrossRefund' | 'RefundFee' | 'AgentRefundFee' | 'Refund';
284
+
285
+ export type UniRefund_TagService_Tags_UpdateTagDto = {
286
+ tagNumber?: string | null;
287
+ refundType?: UniRefund_TagService_Tags_Enums_RefundType;
288
+ issueDate?: string;
289
+ expireDate?: string | null;
290
+ exportValidationId?: string | null;
291
+ refundId?: string | null;
292
+ vatStatementHeaderId?: string | null;
293
+ merchantId?: string | null;
294
+ travellerId?: string | null;
295
+ tripId?: string | null;
296
+ refundTableId?: string | null;
297
+ rebateTableId?: string | null;
298
+ contractHeaderId?: string | null;
299
+ totals?: Array<UniRefund_TagService_Tags_TagTotalDto> | null;
300
+ };
301
+
302
+ export type UniRefund_TagService_Travellers_TravellerDetailDto = {
303
+ id?: string;
304
+ travelDocumentNumber?: string | null;
305
+ countryOfResidence?: string | null;
306
+ nationality?: string | null;
307
+ firstname?: string | null;
308
+ lastname?: string | null;
309
+ };
310
+
311
+ export type UniRefund_TagService_Travellers_TravellerRequestDto = {
312
+ id?: string | null;
313
+ travelDocumentNumber: string;
314
+ nationalityCountryCode2: string;
315
+ firstName: string;
316
+ lastName: string;
317
+ residenceCountryCode2: string;
318
+ expirationDate?: string | null;
319
+ birthDate?: string | null;
320
+ };
321
+
322
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
323
+ grantedPolicies?: {
324
+ [key: string]: (boolean);
325
+ } | null;
326
+ };
327
+
328
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
329
+ localization?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto;
330
+ auth?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto;
331
+ setting?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto;
332
+ currentUser?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto;
333
+ features?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto;
334
+ globalFeatures?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto;
335
+ multiTenancy?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto;
336
+ currentTenant?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto;
337
+ timing?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto;
338
+ clock?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto;
339
+ objectExtensions?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto;
340
+ extraProperties?: {
341
+ [key: string]: unknown;
342
+ } | null;
343
+ };
344
+
345
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto = {
346
+ values?: {
347
+ [key: string]: (string | null);
348
+ } | null;
349
+ };
350
+
351
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto = {
352
+ enabledFeatures?: Array<(string)> | null;
353
+ };
354
+
355
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto = {
356
+ values?: {
357
+ [key: string]: {
358
+ [key: string]: (string);
359
+ };
360
+ } | null;
361
+ resources?: {
362
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
363
+ } | null;
364
+ languages?: Array<Volo_Abp_Localization_LanguageInfo> | null;
365
+ currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
366
+ defaultResourceName?: string | null;
367
+ languagesMap?: {
368
+ [key: string]: Array<Volo_Abp_NameValue>;
369
+ } | null;
370
+ languageFilesMap?: {
371
+ [key: string]: Array<Volo_Abp_NameValue>;
372
+ } | null;
373
+ };
374
+
375
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
376
+ resources?: {
377
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
378
+ } | null;
379
+ currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
380
+ };
381
+
382
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto = {
383
+ texts?: {
384
+ [key: string]: (string);
385
+ } | null;
386
+ baseResources?: Array<(string)> | null;
387
+ };
388
+
389
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto = {
390
+ values?: {
391
+ [key: string]: (string | null);
392
+ } | null;
393
+ };
394
+
395
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto = {
396
+ kind?: string | null;
397
+ };
398
+
399
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto = {
400
+ displayName?: string | null;
401
+ englishName?: string | null;
402
+ threeLetterIsoLanguageName?: string | null;
403
+ twoLetterIsoLanguageName?: string | null;
404
+ isRightToLeft?: boolean;
405
+ cultureName?: string | null;
406
+ name?: string | null;
407
+ nativeName?: string | null;
408
+ dateTimeFormat?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto;
409
+ };
410
+
411
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
412
+ isAuthenticated?: boolean;
413
+ id?: string | null;
414
+ tenantId?: string | null;
415
+ impersonatorUserId?: string | null;
416
+ impersonatorTenantId?: string | null;
417
+ impersonatorUserName?: string | null;
418
+ impersonatorTenantName?: string | null;
419
+ userName?: string | null;
420
+ name?: string | null;
421
+ surName?: string | null;
422
+ email?: string | null;
423
+ emailVerified?: boolean;
424
+ phoneNumber?: string | null;
425
+ phoneNumberVerified?: boolean;
426
+ roles?: Array<(string)> | null;
427
+ sessionId?: string | null;
428
+ };
429
+
430
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto = {
431
+ calendarAlgorithmType?: string | null;
432
+ dateTimeFormatLong?: string | null;
433
+ shortDatePattern?: string | null;
434
+ fullDateTimePattern?: string | null;
435
+ dateSeparator?: string | null;
436
+ shortTimePattern?: string | null;
437
+ longTimePattern?: string | null;
438
+ };
439
+
440
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone = {
441
+ timeZoneName?: string | null;
442
+ };
443
+
444
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
445
+ properties?: {
446
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto;
447
+ } | null;
448
+ configuration?: {
449
+ [key: string]: unknown;
450
+ } | null;
451
+ };
452
+
453
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
454
+ fields?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto> | null;
455
+ localizationResource?: string | null;
456
+ };
457
+
458
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto = {
459
+ name?: string | null;
460
+ value?: unknown;
461
+ };
462
+
463
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto = {
464
+ isAvailable?: boolean;
465
+ };
466
+
467
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
468
+ onGet?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto;
469
+ onCreate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto;
470
+ onUpdate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto;
471
+ };
472
+
473
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
474
+ isAvailable?: boolean;
475
+ };
476
+
477
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto = {
478
+ isAvailable?: boolean;
479
+ };
480
+
481
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto = {
482
+ typeSimple?: string | null;
483
+ config?: {
484
+ [key: string]: unknown;
485
+ } | null;
486
+ };
487
+
488
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
489
+ type?: string | null;
490
+ typeSimple?: string | null;
491
+ displayName?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto;
492
+ api?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto;
493
+ ui?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto;
494
+ attributes?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto> | null;
495
+ configuration?: {
496
+ [key: string]: unknown;
497
+ } | null;
498
+ defaultValue?: unknown;
499
+ };
500
+
501
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
502
+ onTable?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto;
503
+ onCreateForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
504
+ onEditForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
505
+ lookup?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto;
506
+ };
507
+
508
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
509
+ isVisible?: boolean;
510
+ };
511
+
512
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto = {
513
+ url?: string | null;
514
+ resultListPropertyName?: string | null;
515
+ displayPropertyName?: string | null;
516
+ valuePropertyName?: string | null;
517
+ filterParamName?: string | null;
518
+ };
519
+
520
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto = {
521
+ isVisible?: boolean;
522
+ };
523
+
524
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto = {
525
+ name?: string | null;
526
+ resource?: string | null;
527
+ };
528
+
529
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto = {
530
+ entities?: {
531
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto;
532
+ } | null;
533
+ configuration?: {
534
+ [key: string]: unknown;
535
+ } | null;
536
+ };
537
+
538
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto = {
539
+ modules?: {
540
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto;
541
+ } | null;
542
+ enums?: {
543
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto;
544
+ } | null;
545
+ };
546
+
547
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
548
+ iana?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone;
549
+ windows?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone;
550
+ };
551
+
552
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
553
+ timeZone?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone;
554
+ };
555
+
556
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone = {
557
+ timeZoneId?: string | null;
558
+ };
559
+
560
+ export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto = {
561
+ id?: string | null;
562
+ name?: string | null;
563
+ isAvailable?: boolean;
564
+ };
565
+
566
+ export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto = {
567
+ isEnabled?: boolean;
568
+ };
569
+
570
+ export type Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
571
+ uniqueName?: string | null;
572
+ name?: string | null;
573
+ httpMethod?: string | null;
574
+ url?: string | null;
575
+ supportedVersions?: Array<(string)> | null;
576
+ parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
577
+ parameters?: Array<Volo_Abp_Http_Modeling_ParameterApiDescriptionModel> | null;
578
+ returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
579
+ allowAnonymous?: boolean | null;
580
+ implementFrom?: string | null;
581
+ };
582
+
583
+ export type Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
584
+ modules?: {
585
+ [key: string]: Volo_Abp_Http_Modeling_ModuleApiDescriptionModel;
586
+ } | null;
587
+ types?: {
588
+ [key: string]: Volo_Abp_Http_Modeling_TypeApiDescriptionModel;
589
+ } | null;
590
+ };
591
+
592
+ export type Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
593
+ controllerName?: string | null;
594
+ controllerGroupName?: string | null;
595
+ isRemoteService?: boolean;
596
+ isIntegrationService?: boolean;
597
+ apiVersion?: string | null;
598
+ type?: string | null;
599
+ interfaces?: Array<Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel> | null;
600
+ actions?: {
601
+ [key: string]: Volo_Abp_Http_Modeling_ActionApiDescriptionModel;
602
+ } | null;
603
+ };
604
+
605
+ export type Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
606
+ type?: string | null;
607
+ name?: string | null;
608
+ methods?: Array<Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel> | null;
609
+ };
610
+
611
+ export type Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
612
+ name?: string | null;
613
+ parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
614
+ returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
615
+ };
616
+
617
+ export type Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel = {
618
+ name?: string | null;
619
+ typeAsString?: string | null;
620
+ type?: string | null;
621
+ typeSimple?: string | null;
622
+ isOptional?: boolean;
623
+ defaultValue?: unknown;
624
+ };
625
+
626
+ export type Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
627
+ rootPath?: string | null;
628
+ remoteServiceName?: string | null;
629
+ controllers?: {
630
+ [key: string]: Volo_Abp_Http_Modeling_ControllerApiDescriptionModel;
631
+ } | null;
632
+ };
633
+
634
+ export type Volo_Abp_Http_Modeling_ParameterApiDescriptionModel = {
635
+ nameOnMethod?: string | null;
636
+ name?: string | null;
637
+ jsonName?: string | null;
638
+ type?: string | null;
639
+ typeSimple?: string | null;
640
+ isOptional?: boolean;
641
+ defaultValue?: unknown;
642
+ constraintTypes?: Array<(string)> | null;
643
+ bindingSourceId?: string | null;
644
+ descriptorName?: string | null;
645
+ };
646
+
647
+ export type Volo_Abp_Http_Modeling_PropertyApiDescriptionModel = {
648
+ name?: string | null;
649
+ jsonName?: string | null;
650
+ type?: string | null;
651
+ typeSimple?: string | null;
652
+ isRequired?: boolean;
653
+ minLength?: number | null;
654
+ maxLength?: number | null;
655
+ minimum?: string | null;
656
+ maximum?: string | null;
657
+ regex?: string | null;
658
+ };
659
+
660
+ export type Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel = {
661
+ type?: string | null;
662
+ typeSimple?: string | null;
663
+ };
664
+
665
+ export type Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
666
+ baseType?: string | null;
667
+ isEnum?: boolean;
668
+ enumNames?: Array<(string)> | null;
669
+ enumValues?: Array<unknown> | null;
670
+ genericArguments?: Array<(string)> | null;
671
+ properties?: Array<Volo_Abp_Http_Modeling_PropertyApiDescriptionModel> | null;
672
+ };
673
+
674
+ export type Volo_Abp_Http_RemoteServiceErrorInfo = {
675
+ code?: string | null;
676
+ message?: string | null;
677
+ details?: string | null;
678
+ data?: {
679
+ [key: string]: unknown;
680
+ } | null;
681
+ validationErrors?: Array<Volo_Abp_Http_RemoteServiceValidationErrorInfo> | null;
682
+ };
683
+
684
+ export type Volo_Abp_Http_RemoteServiceErrorResponse = {
685
+ error?: Volo_Abp_Http_RemoteServiceErrorInfo;
686
+ };
687
+
688
+ export type Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
689
+ message?: string | null;
690
+ members?: Array<(string)> | null;
691
+ };
692
+
693
+ export type Volo_Abp_Localization_LanguageInfo = {
694
+ cultureName?: string | null;
695
+ uiCultureName?: string | null;
696
+ displayName?: string | null;
697
+ readonly twoLetterISOLanguageName?: string | null;
698
+ };
699
+
700
+ export type Volo_Abp_NameValue = {
701
+ name?: string | null;
702
+ value?: string | null;
703
+ };
704
+
705
+ export type GetApiAbpApiDefinitionData = {
706
+ includeTypes?: boolean;
707
+ };
708
+
709
+ export type GetApiAbpApiDefinitionResponse = Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
710
+
711
+ export type GetApiAbpApplicationConfigurationData = {
712
+ includeLocalizationResources?: boolean;
713
+ };
714
+
715
+ export type GetApiAbpApplicationConfigurationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
716
+
717
+ export type GetApiAbpApplicationLocalizationData = {
718
+ cultureName: string;
719
+ onlyDynamics?: boolean;
720
+ };
721
+
722
+ export type GetApiAbpApplicationLocalizationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
723
+
724
+ export type PostApiTagServiceTagData = {
725
+ requestBody?: UniRefund_TagService_Tags_CreateTagRequestDto;
726
+ };
727
+
728
+ export type PostApiTagServiceTagResponse = UniRefund_TagService_Tags_TagDto;
729
+
730
+ export type GetApiTagServiceTagData = {
731
+ exportEndDate?: string;
732
+ exportStartDate?: string;
733
+ invoiceNumber?: string;
734
+ issuedEndDate?: string;
735
+ issuedStartDate?: string;
736
+ maxResultCount?: number;
737
+ merchantIds?: Array<(string)>;
738
+ paidEndDate?: string;
739
+ paidStartDate?: string;
740
+ refundTypes?: Array<UniRefund_TagService_Tags_Enums_RefundType>;
741
+ skipCount?: number;
742
+ sorting?: string;
743
+ statuses?: Array<UniRefund_TagService_Tags_TagStatusType>;
744
+ tagNumber?: string;
745
+ travellerDocumentNumber?: string;
746
+ travellerFullName?: string;
747
+ travellerIds?: Array<(string)>;
748
+ };
749
+
750
+ export type GetApiTagServiceTagResponse = TagPagedAndSortedResultResponseDto_TagListItemDto;
751
+
752
+ export type PutApiTagServiceTagByIdData = {
753
+ id: string;
754
+ requestBody?: UniRefund_TagService_Tags_UpdateTagDto;
755
+ };
756
+
757
+ export type PutApiTagServiceTagByIdResponse = UniRefund_TagService_Tags_TagDto;
758
+
759
+ export type DeleteApiTagServiceTagByIdData = {
760
+ id: string;
761
+ };
762
+
763
+ export type DeleteApiTagServiceTagByIdResponse = unknown;
764
+
765
+ export type GetApiTagServiceTagByIdDetailData = {
766
+ id: string;
767
+ };
768
+
769
+ export type GetApiTagServiceTagByIdDetailResponse = UniRefund_TagService_Tags_TagDetailDto;
770
+
771
+ export type GetApiTagServiceTagTagsRefundData = {
772
+ isExportValidated: boolean;
773
+ maxResultCount?: number;
774
+ refundPointId: string;
775
+ refundType: UniRefund_TagService_Tags_Enums_RefundType;
776
+ skipCount?: number;
777
+ travellerDocumentNumber: string;
778
+ };
779
+
780
+ export type GetApiTagServiceTagTagsRefundResponse = PagedResultDto_TagListItemDto;
781
+
782
+ export type GetApiTagServiceTagSummaryData = {
783
+ exportEndDate?: string;
784
+ exportStartDate?: string;
785
+ invoiceNumber?: string;
786
+ issuedEndDate?: string;
787
+ issuedStartDate?: string;
788
+ maxResultCount?: number;
789
+ merchantIds?: Array<(string)>;
790
+ paidEndDate?: string;
791
+ paidStartDate?: string;
792
+ refundTypes?: Array<UniRefund_TagService_Tags_Enums_RefundType>;
793
+ skipCount?: number;
794
+ sorting?: string;
795
+ statuses?: Array<UniRefund_TagService_Tags_TagStatusType>;
796
+ tagNumber?: string;
797
+ travellerDocumentNumber?: string;
798
+ travellerFullName?: string;
799
+ travellerIds?: Array<(string)>;
800
+ };
801
+
802
+ export type GetApiTagServiceTagSummaryResponse = UniRefund_TagService_Tags_TagListSummaryDto;
803
+
804
+ export type GetApiTagServiceTagTagsRefundFeesData = {
805
+ refundDate: string;
806
+ refundPointId: string;
807
+ refundType: UniRefund_TagService_Tags_Enums_RefundType;
808
+ tagIds: Array<(string)>;
809
+ };
810
+
811
+ export type GetApiTagServiceTagTagsRefundFeesResponse = Array<UniRefund_TagService_Tags_TagRefundFeesDto>;
812
+
813
+ export type PutApiTagServiceTagExportValidationByIdData = {
814
+ id: string;
815
+ requestBody?: UniRefund_TagService_Tags_ExportValidationRequestDto;
816
+ };
817
+
818
+ export type PutApiTagServiceTagExportValidationByIdResponse = UniRefund_ExportValidationService_ExportValidations_ExportValidationDto;
819
+
820
+ export type GetIntegrationApiTagsSumData = {
821
+ ids: Array<(string)>;
822
+ refundDate: string;
823
+ refundPointId: string;
824
+ refundType: UniRefund_TagService_Tags_Enums_RefundType;
825
+ };
826
+
827
+ export type GetIntegrationApiTagsSumResponse = UniRefund_TagService_Tags_TagSumTagsResponseDto;
828
+
829
+ export type GetIntegrationApiTagsSumForVatStatementData = {
830
+ tagIds?: Array<(string)>;
831
+ };
832
+
833
+ export type GetIntegrationApiTagsSumForVatStatementResponse = Array<UniRefund_TagService_Tags_TagSumTagsForVATStatementTagDetailResponseDto>;
834
+
835
+ export type PutIntegrationApiTagsRefundData = {
836
+ requestBody?: UniRefund_TagService_Tags_SetTagRefundRequestDto;
837
+ };
838
+
839
+ export type PutIntegrationApiTagsRefundResponse = UniRefund_TagService_Tags_SetTagRefundResponseDto;
840
+
841
+ export type GetIntegrationApiTagsDetailsListForRefundData = {
842
+ tagIds?: Array<(string)>;
843
+ };
844
+
845
+ export type GetIntegrationApiTagsDetailsListForRefundResponse = Array<UniRefund_TagService_Tags_TagDetailForRefundDto>;
846
+
847
+ export type GetIntegrationApiTagsValidListForVatStatementData = {
848
+ merchantIds?: Array<(string)>;
849
+ month?: number;
850
+ year?: number;
851
+ };
852
+
853
+ export type GetIntegrationApiTagsValidListForVatStatementResponse = Array<UniRefund_TagService_Tags_TagValidForVATStatementResponseDto>;
854
+
855
+ export type PutIntegrationApiTagsSetVatStatementHeaderIdsOfTagsData = {
856
+ requestBody?: UniRefund_TagService_Tags_SetTagVATStatementHeaderIdRequestDto;
857
+ };
858
+
859
+ export type PutIntegrationApiTagsSetVatStatementHeaderIdsOfTagsResponse = unknown;
860
+
861
+ export type $OpenApiTs = {
862
+ '/api/abp/api-definition': {
863
+ get: {
864
+ req: GetApiAbpApiDefinitionData;
865
+ res: {
866
+ /**
867
+ * Success
868
+ */
869
+ 200: Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
870
+ /**
871
+ * Bad Request
872
+ */
873
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
874
+ /**
875
+ * Unauthorized
876
+ */
877
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
878
+ /**
879
+ * Forbidden
880
+ */
881
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
882
+ /**
883
+ * Not Found
884
+ */
885
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
886
+ /**
887
+ * Server Error
888
+ */
889
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
890
+ /**
891
+ * Server Error
892
+ */
893
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
894
+ };
895
+ };
896
+ };
897
+ '/api/abp/application-configuration': {
898
+ get: {
899
+ req: GetApiAbpApplicationConfigurationData;
900
+ res: {
901
+ /**
902
+ * Success
903
+ */
904
+ 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
905
+ /**
906
+ * Bad Request
907
+ */
908
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
909
+ /**
910
+ * Unauthorized
911
+ */
912
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
913
+ /**
914
+ * Forbidden
915
+ */
916
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
917
+ /**
918
+ * Not Found
919
+ */
920
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
921
+ /**
922
+ * Server Error
923
+ */
924
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
925
+ /**
926
+ * Server Error
927
+ */
928
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
929
+ };
930
+ };
931
+ };
932
+ '/api/abp/application-localization': {
933
+ get: {
934
+ req: GetApiAbpApplicationLocalizationData;
935
+ res: {
936
+ /**
937
+ * Success
938
+ */
939
+ 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
940
+ /**
941
+ * Bad Request
942
+ */
943
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
944
+ /**
945
+ * Unauthorized
946
+ */
947
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
948
+ /**
949
+ * Forbidden
950
+ */
951
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
952
+ /**
953
+ * Not Found
954
+ */
955
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
956
+ /**
957
+ * Server Error
958
+ */
959
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
960
+ /**
961
+ * Server Error
962
+ */
963
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
964
+ };
965
+ };
966
+ };
967
+ '/api/tag-service/tag': {
968
+ post: {
969
+ req: PostApiTagServiceTagData;
970
+ res: {
971
+ /**
972
+ * Success
973
+ */
974
+ 200: UniRefund_TagService_Tags_TagDto;
975
+ /**
976
+ * Bad Request
977
+ */
978
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
979
+ /**
980
+ * Unauthorized
981
+ */
982
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
983
+ /**
984
+ * Forbidden
985
+ */
986
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
987
+ /**
988
+ * Not Found
989
+ */
990
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
991
+ /**
992
+ * Server Error
993
+ */
994
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
995
+ /**
996
+ * Server Error
997
+ */
998
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
999
+ };
1000
+ };
1001
+ get: {
1002
+ req: GetApiTagServiceTagData;
1003
+ res: {
1004
+ /**
1005
+ * Success
1006
+ */
1007
+ 200: TagPagedAndSortedResultResponseDto_TagListItemDto;
1008
+ /**
1009
+ * Bad Request
1010
+ */
1011
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1012
+ /**
1013
+ * Unauthorized
1014
+ */
1015
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1016
+ /**
1017
+ * Forbidden
1018
+ */
1019
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1020
+ /**
1021
+ * Not Found
1022
+ */
1023
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1024
+ /**
1025
+ * Server Error
1026
+ */
1027
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1028
+ /**
1029
+ * Server Error
1030
+ */
1031
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1032
+ };
1033
+ };
1034
+ };
1035
+ '/api/tag-service/tag/{id}': {
1036
+ put: {
1037
+ req: PutApiTagServiceTagByIdData;
1038
+ res: {
1039
+ /**
1040
+ * Success
1041
+ */
1042
+ 200: UniRefund_TagService_Tags_TagDto;
1043
+ /**
1044
+ * Bad Request
1045
+ */
1046
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1047
+ /**
1048
+ * Unauthorized
1049
+ */
1050
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1051
+ /**
1052
+ * Forbidden
1053
+ */
1054
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1055
+ /**
1056
+ * Not Found
1057
+ */
1058
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1059
+ /**
1060
+ * Server Error
1061
+ */
1062
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1063
+ /**
1064
+ * Server Error
1065
+ */
1066
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1067
+ };
1068
+ };
1069
+ delete: {
1070
+ req: DeleteApiTagServiceTagByIdData;
1071
+ res: {
1072
+ /**
1073
+ * Success
1074
+ */
1075
+ 200: unknown;
1076
+ /**
1077
+ * Bad Request
1078
+ */
1079
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1080
+ /**
1081
+ * Unauthorized
1082
+ */
1083
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1084
+ /**
1085
+ * Forbidden
1086
+ */
1087
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1088
+ /**
1089
+ * Not Found
1090
+ */
1091
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1092
+ /**
1093
+ * Server Error
1094
+ */
1095
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1096
+ /**
1097
+ * Server Error
1098
+ */
1099
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1100
+ };
1101
+ };
1102
+ };
1103
+ '/api/tag-service/tag/{id}/detail': {
1104
+ get: {
1105
+ req: GetApiTagServiceTagByIdDetailData;
1106
+ res: {
1107
+ /**
1108
+ * Success
1109
+ */
1110
+ 200: UniRefund_TagService_Tags_TagDetailDto;
1111
+ /**
1112
+ * Bad Request
1113
+ */
1114
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1115
+ /**
1116
+ * Unauthorized
1117
+ */
1118
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1119
+ /**
1120
+ * Forbidden
1121
+ */
1122
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1123
+ /**
1124
+ * Not Found
1125
+ */
1126
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1127
+ /**
1128
+ * Server Error
1129
+ */
1130
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1131
+ /**
1132
+ * Server Error
1133
+ */
1134
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1135
+ };
1136
+ };
1137
+ };
1138
+ '/api/tag-service/tag/tags-refund': {
1139
+ get: {
1140
+ req: GetApiTagServiceTagTagsRefundData;
1141
+ res: {
1142
+ /**
1143
+ * Success
1144
+ */
1145
+ 200: PagedResultDto_TagListItemDto;
1146
+ /**
1147
+ * Bad Request
1148
+ */
1149
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1150
+ /**
1151
+ * Unauthorized
1152
+ */
1153
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1154
+ /**
1155
+ * Forbidden
1156
+ */
1157
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1158
+ /**
1159
+ * Not Found
1160
+ */
1161
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1162
+ /**
1163
+ * Server Error
1164
+ */
1165
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1166
+ /**
1167
+ * Server Error
1168
+ */
1169
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1170
+ };
1171
+ };
1172
+ };
1173
+ '/api/tag-service/tag/summary': {
1174
+ get: {
1175
+ req: GetApiTagServiceTagSummaryData;
1176
+ res: {
1177
+ /**
1178
+ * Success
1179
+ */
1180
+ 200: UniRefund_TagService_Tags_TagListSummaryDto;
1181
+ /**
1182
+ * Bad Request
1183
+ */
1184
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1185
+ /**
1186
+ * Unauthorized
1187
+ */
1188
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1189
+ /**
1190
+ * Forbidden
1191
+ */
1192
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1193
+ /**
1194
+ * Not Found
1195
+ */
1196
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1197
+ /**
1198
+ * Server Error
1199
+ */
1200
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1201
+ /**
1202
+ * Server Error
1203
+ */
1204
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1205
+ };
1206
+ };
1207
+ };
1208
+ '/api/tag-service/tag/tags-refund-fees': {
1209
+ get: {
1210
+ req: GetApiTagServiceTagTagsRefundFeesData;
1211
+ res: {
1212
+ /**
1213
+ * Success
1214
+ */
1215
+ 200: Array<UniRefund_TagService_Tags_TagRefundFeesDto>;
1216
+ /**
1217
+ * Bad Request
1218
+ */
1219
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1220
+ /**
1221
+ * Unauthorized
1222
+ */
1223
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1224
+ /**
1225
+ * Forbidden
1226
+ */
1227
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1228
+ /**
1229
+ * Not Found
1230
+ */
1231
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1232
+ /**
1233
+ * Server Error
1234
+ */
1235
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1236
+ /**
1237
+ * Server Error
1238
+ */
1239
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1240
+ };
1241
+ };
1242
+ };
1243
+ '/api/tag-service/tag/export-validation/{id}': {
1244
+ put: {
1245
+ req: PutApiTagServiceTagExportValidationByIdData;
1246
+ res: {
1247
+ /**
1248
+ * Success
1249
+ */
1250
+ 200: UniRefund_ExportValidationService_ExportValidations_ExportValidationDto;
1251
+ /**
1252
+ * Bad Request
1253
+ */
1254
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1255
+ /**
1256
+ * Unauthorized
1257
+ */
1258
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1259
+ /**
1260
+ * Forbidden
1261
+ */
1262
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1263
+ /**
1264
+ * Not Found
1265
+ */
1266
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1267
+ /**
1268
+ * Server Error
1269
+ */
1270
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1271
+ /**
1272
+ * Server Error
1273
+ */
1274
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1275
+ };
1276
+ };
1277
+ };
1278
+ '/integration-api/tags/sum': {
1279
+ get: {
1280
+ req: GetIntegrationApiTagsSumData;
1281
+ res: {
1282
+ /**
1283
+ * Success
1284
+ */
1285
+ 200: UniRefund_TagService_Tags_TagSumTagsResponseDto;
1286
+ /**
1287
+ * Bad Request
1288
+ */
1289
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1290
+ /**
1291
+ * Unauthorized
1292
+ */
1293
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1294
+ /**
1295
+ * Forbidden
1296
+ */
1297
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1298
+ /**
1299
+ * Not Found
1300
+ */
1301
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1302
+ /**
1303
+ * Server Error
1304
+ */
1305
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1306
+ /**
1307
+ * Server Error
1308
+ */
1309
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1310
+ };
1311
+ };
1312
+ };
1313
+ '/integration-api/tags/sum-for-vat-statement': {
1314
+ get: {
1315
+ req: GetIntegrationApiTagsSumForVatStatementData;
1316
+ res: {
1317
+ /**
1318
+ * Success
1319
+ */
1320
+ 200: Array<UniRefund_TagService_Tags_TagSumTagsForVATStatementTagDetailResponseDto>;
1321
+ /**
1322
+ * Bad Request
1323
+ */
1324
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1325
+ /**
1326
+ * Unauthorized
1327
+ */
1328
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1329
+ /**
1330
+ * Forbidden
1331
+ */
1332
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1333
+ /**
1334
+ * Not Found
1335
+ */
1336
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1337
+ /**
1338
+ * Server Error
1339
+ */
1340
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1341
+ /**
1342
+ * Server Error
1343
+ */
1344
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1345
+ };
1346
+ };
1347
+ };
1348
+ '/integration-api/tags/refund': {
1349
+ put: {
1350
+ req: PutIntegrationApiTagsRefundData;
1351
+ res: {
1352
+ /**
1353
+ * Success
1354
+ */
1355
+ 200: UniRefund_TagService_Tags_SetTagRefundResponseDto;
1356
+ /**
1357
+ * Bad Request
1358
+ */
1359
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1360
+ /**
1361
+ * Unauthorized
1362
+ */
1363
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1364
+ /**
1365
+ * Forbidden
1366
+ */
1367
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1368
+ /**
1369
+ * Not Found
1370
+ */
1371
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1372
+ /**
1373
+ * Server Error
1374
+ */
1375
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1376
+ /**
1377
+ * Server Error
1378
+ */
1379
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1380
+ };
1381
+ };
1382
+ };
1383
+ '/integration-api/tags/details-list-for-refund': {
1384
+ get: {
1385
+ req: GetIntegrationApiTagsDetailsListForRefundData;
1386
+ res: {
1387
+ /**
1388
+ * Success
1389
+ */
1390
+ 200: Array<UniRefund_TagService_Tags_TagDetailForRefundDto>;
1391
+ /**
1392
+ * Bad Request
1393
+ */
1394
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1395
+ /**
1396
+ * Unauthorized
1397
+ */
1398
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1399
+ /**
1400
+ * Forbidden
1401
+ */
1402
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1403
+ /**
1404
+ * Not Found
1405
+ */
1406
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1407
+ /**
1408
+ * Server Error
1409
+ */
1410
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1411
+ /**
1412
+ * Server Error
1413
+ */
1414
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1415
+ };
1416
+ };
1417
+ };
1418
+ '/integration-api/tags/valid-list-for-vat-statement': {
1419
+ get: {
1420
+ req: GetIntegrationApiTagsValidListForVatStatementData;
1421
+ res: {
1422
+ /**
1423
+ * Success
1424
+ */
1425
+ 200: Array<UniRefund_TagService_Tags_TagValidForVATStatementResponseDto>;
1426
+ /**
1427
+ * Bad Request
1428
+ */
1429
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1430
+ /**
1431
+ * Unauthorized
1432
+ */
1433
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1434
+ /**
1435
+ * Forbidden
1436
+ */
1437
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1438
+ /**
1439
+ * Not Found
1440
+ */
1441
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1442
+ /**
1443
+ * Server Error
1444
+ */
1445
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1446
+ /**
1447
+ * Server Error
1448
+ */
1449
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1450
+ };
1451
+ };
1452
+ };
1453
+ '/integration-api/tags/set-vat-statement-header-ids-of-tags': {
1454
+ put: {
1455
+ req: PutIntegrationApiTagsSetVatStatementHeaderIdsOfTagsData;
1456
+ res: {
1457
+ /**
1458
+ * Success
1459
+ */
1460
+ 200: unknown;
1461
+ /**
1462
+ * Bad Request
1463
+ */
1464
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1465
+ /**
1466
+ * Unauthorized
1467
+ */
1468
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1469
+ /**
1470
+ * Forbidden
1471
+ */
1472
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1473
+ /**
1474
+ * Not Found
1475
+ */
1476
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1477
+ /**
1478
+ * Server Error
1479
+ */
1480
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1481
+ /**
1482
+ * Server Error
1483
+ */
1484
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1485
+ };
1486
+ };
1487
+ };
1488
1488
  };