@ayasofyazilim/saas 0.0.101 → 0.0.103

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (577) hide show
  1. package/.github/workflows/release.yaml +45 -45
  2. package/.github/workflows/update.yaml +93 -71
  3. package/.github/workflows/update_release.yaml +33 -33
  4. package/API_LIST.json +67 -0
  5. package/AccountService/AccountServiceClient.ts +68 -68
  6. package/AccountService/core/ApiError.ts +20 -20
  7. package/AccountService/core/ApiRequestOptions.ts +12 -12
  8. package/AccountService/core/ApiResult.ts +6 -6
  9. package/AccountService/core/BaseHttpRequest.ts +9 -9
  10. package/AccountService/core/CancelablePromise.ts +125 -125
  11. package/AccountService/core/FetchHttpRequest.ts +21 -21
  12. package/AccountService/core/OpenAPI.ts +55 -55
  13. package/AccountService/core/request.ts +340 -340
  14. package/AccountService/index.ts +8 -8
  15. package/AccountService/models/Volo_Abp_Account_AccountExternalProviderSettingsDto.ts +9 -9
  16. package/AccountService/models/Volo_Abp_Account_AccountRecaptchaSettingsDto.ts +14 -14
  17. package/AccountService/models/Volo_Abp_Account_AccountSettingsDto.ts +9 -9
  18. package/AccountService/models/Volo_Abp_Account_AccountTwoFactorSettingsDto.ts +11 -11
  19. package/AccountService/models/Volo_Abp_Account_AuthenticatorInfoDto.ts +9 -9
  20. package/AccountService/models/Volo_Abp_Account_ChangePasswordInput.ts +9 -9
  21. package/AccountService/models/Volo_Abp_Account_ConfirmEmailInput.ts +9 -9
  22. package/AccountService/models/Volo_Abp_Account_ConfirmPhoneNumberInput.ts +9 -9
  23. package/AccountService/models/Volo_Abp_Account_DelegateNewUserInput.ts +10 -10
  24. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderDto.ts +9 -9
  25. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemDto.ts +11 -11
  26. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto.ts +13 -13
  27. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettings.ts +12 -12
  28. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty.ts +9 -9
  29. package/AccountService/models/Volo_Abp_Account_IdentityUserConfirmationStateDto.ts +9 -9
  30. package/AccountService/models/Volo_Abp_Account_IsLinkedInput.ts +9 -9
  31. package/AccountService/models/Volo_Abp_Account_LinkUserDto.ts +12 -12
  32. package/AccountService/models/Volo_Abp_Account_LinkUserInput.ts +10 -10
  33. package/AccountService/models/Volo_Abp_Account_ProfileDto.ts +20 -20
  34. package/AccountService/models/Volo_Abp_Account_ProfilePictureSourceDto.ts +11 -11
  35. package/AccountService/models/Volo_Abp_Account_ProfilePictureType.ts +9 -9
  36. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult.ts +10 -10
  37. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LinkUserLoginInfo.ts +9 -9
  38. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LoginResultType.ts +12 -12
  39. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_UserLoginInfo.ts +11 -11
  40. package/AccountService/models/Volo_Abp_Account_RegisterDto.ts +15 -15
  41. package/AccountService/models/Volo_Abp_Account_ResetPasswordDto.ts +10 -10
  42. package/AccountService/models/Volo_Abp_Account_SendEmailConfirmationTokenDto.ts +11 -11
  43. package/AccountService/models/Volo_Abp_Account_SendPasswordResetCodeDto.ts +11 -11
  44. package/AccountService/models/Volo_Abp_Account_SendPhoneNumberConfirmationTokenDto.ts +9 -9
  45. package/AccountService/models/Volo_Abp_Account_SendTwoFactorCodeInput.ts +10 -10
  46. package/AccountService/models/Volo_Abp_Account_UnLinkUserInput.ts +9 -9
  47. package/AccountService/models/Volo_Abp_Account_UpdateExternalProviderDto.ts +12 -12
  48. package/AccountService/models/Volo_Abp_Account_UpdateProfileDto.ts +15 -15
  49. package/AccountService/models/Volo_Abp_Account_UserDelegationDto.ts +11 -11
  50. package/AccountService/models/Volo_Abp_Account_UserLookupDto.ts +9 -9
  51. package/AccountService/models/Volo_Abp_Account_VerifyAuthenticatorCodeDto.ts +8 -8
  52. package/AccountService/models/Volo_Abp_Account_VerifyAuthenticatorCodeInput.ts +8 -8
  53. package/AccountService/models/Volo_Abp_Account_VerifyEmailConfirmationTokenInput.ts +9 -9
  54. package/AccountService/models/Volo_Abp_Account_VerifyLinkLoginTokenInput.ts +10 -10
  55. package/AccountService/models/Volo_Abp_Account_VerifyLinkTokenInput.ts +10 -10
  56. package/AccountService/models/Volo_Abp_Account_VerifyPasswordResetTokenInput.ts +9 -9
  57. package/AccountService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -9
  58. package/AccountService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -10
  59. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -8
  60. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -30
  61. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -8
  62. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -8
  63. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -18
  64. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -9
  65. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -9
  66. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -8
  67. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -8
  68. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -17
  69. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -22
  70. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -14
  71. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -8
  72. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -10
  73. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -10
  74. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -9
  75. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -8
  76. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -13
  77. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -8
  78. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -8
  79. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -9
  80. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -19
  81. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -14
  82. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -8
  83. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -12
  84. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -8
  85. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -9
  86. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -10
  87. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -11
  88. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -11
  89. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -9
  90. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -8
  91. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -10
  92. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto.ts +11 -11
  93. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -8
  94. package/AccountService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -20
  95. package/AccountService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -11
  96. package/AccountService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -17
  97. package/AccountService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -11
  98. package/AccountService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -12
  99. package/AccountService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -13
  100. package/AccountService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -11
  101. package/AccountService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -17
  102. package/AccountService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -17
  103. package/AccountService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -9
  104. package/AccountService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -14
  105. package/AccountService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -13
  106. package/AccountService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -9
  107. package/AccountService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -9
  108. package/AccountService/models/Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour.ts +9 -9
  109. package/AccountService/models/Volo_Abp_Identity_IdentitySecurityLogDto.ts +21 -21
  110. package/AccountService/models/Volo_Abp_Identity_IdentityUserDto.ts +35 -35
  111. package/AccountService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -12
  112. package/AccountService/models/Volo_Abp_NameValue.ts +9 -9
  113. package/AccountService/schemas.gen.ts +5333 -5333
  114. package/AccountService/services/AbpApiDefinitionService.ts +34 -34
  115. package/AccountService/services/AbpApplicationConfigurationService.ts +34 -34
  116. package/AccountService/services/AbpApplicationLocalizationService.ts +37 -37
  117. package/AccountService/services/AbpTenantService.ts +58 -58
  118. package/AccountService/services/AccountExternalProviderService.ts +56 -56
  119. package/AccountService/services/AccountService.ts +545 -545
  120. package/AccountService/services/AccountSettingsService.ts +178 -178
  121. package/AccountService/services/DynamicClaimsService.ts +27 -27
  122. package/AccountService/services/LoginService.ts +99 -99
  123. package/AccountService/services/ProfileService.ts +155 -155
  124. package/AccountService/services/UserService.ts +313 -313
  125. package/AccountService/services.gen.ts +1539 -1539
  126. package/AccountService/types.gen.ts +3328 -3328
  127. package/AdministrationService/AdministrationServiceClient.ts +80 -80
  128. package/AdministrationService/core/ApiError.ts +20 -20
  129. package/AdministrationService/core/ApiRequestOptions.ts +12 -12
  130. package/AdministrationService/core/ApiResult.ts +6 -6
  131. package/AdministrationService/core/BaseHttpRequest.ts +9 -9
  132. package/AdministrationService/core/CancelablePromise.ts +125 -125
  133. package/AdministrationService/core/FetchHttpRequest.ts +21 -21
  134. package/AdministrationService/core/OpenAPI.ts +55 -55
  135. package/AdministrationService/core/request.ts +340 -340
  136. package/AdministrationService/index.ts +8 -8
  137. package/AdministrationService/models/System_Net_HttpStatusCode.ts +67 -67
  138. package/AdministrationService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -9
  139. package/AdministrationService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -10
  140. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -8
  141. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -30
  142. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -8
  143. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -8
  144. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -18
  145. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -9
  146. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -9
  147. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -8
  148. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -8
  149. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -17
  150. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -22
  151. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -14
  152. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -8
  153. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -10
  154. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -10
  155. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -9
  156. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -8
  157. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -13
  158. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -8
  159. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -8
  160. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -9
  161. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -19
  162. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -14
  163. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -8
  164. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -12
  165. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -8
  166. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -9
  167. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -10
  168. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -11
  169. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -11
  170. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -9
  171. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -8
  172. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -10
  173. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto.ts +11 -11
  174. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -8
  175. package/AdministrationService/models/Volo_Abp_AuditLogging_AuditLogActionDto.ts +16 -16
  176. package/AdministrationService/models/Volo_Abp_AuditLogging_AuditLogDto.ts +33 -33
  177. package/AdministrationService/models/Volo_Abp_AuditLogging_EntityChangeDto.ts +18 -18
  178. package/AdministrationService/models/Volo_Abp_AuditLogging_EntityChangeWithUsernameDto.ts +10 -10
  179. package/AdministrationService/models/Volo_Abp_AuditLogging_EntityPropertyChangeDto.ts +14 -14
  180. package/AdministrationService/models/Volo_Abp_AuditLogging_GetAverageExecutionDurationPerDayOutput.ts +8 -8
  181. package/AdministrationService/models/Volo_Abp_AuditLogging_GetErrorRateOutput.ts +8 -8
  182. package/AdministrationService/models/Volo_Abp_Auditing_EntityChangeType.ts +9 -9
  183. package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureDto.ts +17 -17
  184. package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureGroupDto.ts +11 -11
  185. package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureProviderDto.ts +9 -9
  186. package/AdministrationService/models/Volo_Abp_FeatureManagement_GetFeatureListResultDto.ts +9 -9
  187. package/AdministrationService/models/Volo_Abp_FeatureManagement_UpdateFeatureDto.ts +9 -9
  188. package/AdministrationService/models/Volo_Abp_FeatureManagement_UpdateFeaturesDto.ts +9 -9
  189. package/AdministrationService/models/Volo_Abp_Gdpr_DownloadTokenResultDto.ts +8 -8
  190. package/AdministrationService/models/Volo_Abp_Gdpr_GdprRequestDto.ts +10 -10
  191. package/AdministrationService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -20
  192. package/AdministrationService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -11
  193. package/AdministrationService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -17
  194. package/AdministrationService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -11
  195. package/AdministrationService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -12
  196. package/AdministrationService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -13
  197. package/AdministrationService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -11
  198. package/AdministrationService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -17
  199. package/AdministrationService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -17
  200. package/AdministrationService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -9
  201. package/AdministrationService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -14
  202. package/AdministrationService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -13
  203. package/AdministrationService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -9
  204. package/AdministrationService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -9
  205. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_CreateLanguageDto.ts +13 -13
  206. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_CultureInfoDto.ts +9 -9
  207. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageDto.ts +18 -18
  208. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageResourceDto.ts +8 -8
  209. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageTextDto.ts +13 -13
  210. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_UpdateLanguageDto.ts +12 -12
  211. package/AdministrationService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -12
  212. package/AdministrationService/models/Volo_Abp_NameValue.ts +9 -9
  213. package/AdministrationService/models/Volo_Abp_PermissionManagement_GetPermissionListResultDto.ts +10 -10
  214. package/AdministrationService/models/Volo_Abp_PermissionManagement_PermissionGrantInfoDto.ts +14 -14
  215. package/AdministrationService/models/Volo_Abp_PermissionManagement_PermissionGroupDto.ts +13 -13
  216. package/AdministrationService/models/Volo_Abp_PermissionManagement_ProviderInfoDto.ts +9 -9
  217. package/AdministrationService/models/Volo_Abp_PermissionManagement_UpdatePermissionDto.ts +9 -9
  218. package/AdministrationService/models/Volo_Abp_PermissionManagement_UpdatePermissionsDto.ts +9 -9
  219. package/AdministrationService/models/Volo_Abp_SettingManagement_EmailSettingsDto.ts +16 -16
  220. package/AdministrationService/models/Volo_Abp_SettingManagement_SendTestEmailInput.ts +11 -11
  221. package/AdministrationService/models/Volo_Abp_SettingManagement_UpdateEmailSettingsDto.ts +16 -16
  222. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_RestoreTemplateContentInput.ts +9 -9
  223. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_TemplateDefinitionDto.ts +13 -13
  224. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_TextTemplateContentDto.ts +10 -10
  225. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_UpdateTemplateContentInput.ts +10 -10
  226. package/AdministrationService/models/Volo_Abp_Validation_StringValues_IStringValueType.ts +11 -11
  227. package/AdministrationService/models/Volo_Abp_Validation_StringValues_IValueValidator.ts +9 -9
  228. package/AdministrationService/schemas.gen.ts +6745 -6745
  229. package/AdministrationService/services/AbpApiDefinitionService.ts +34 -34
  230. package/AdministrationService/services/AbpApplicationConfigurationService.ts +34 -34
  231. package/AdministrationService/services/AbpApplicationLocalizationService.ts +37 -37
  232. package/AdministrationService/services/AbpTenantService.ts +58 -58
  233. package/AdministrationService/services/AuditLogsService.ts +286 -286
  234. package/AdministrationService/services/EmailSettingsService.ts +76 -76
  235. package/AdministrationService/services/FeaturesService.ts +96 -96
  236. package/AdministrationService/services/GdprRequestService.ts +152 -152
  237. package/AdministrationService/services/LanguageTextsService.ts +157 -157
  238. package/AdministrationService/services/LanguagesService.ts +257 -257
  239. package/AdministrationService/services/PermissionsService.ts +69 -69
  240. package/AdministrationService/services/TextTemplateContentsService.ts +85 -85
  241. package/AdministrationService/services/TextTemplateDefinitionsService.ts +69 -69
  242. package/AdministrationService/services/TimeZoneSettingsService.ts +70 -70
  243. package/AdministrationService/services.gen.ts +1451 -1451
  244. package/AdministrationService/types.gen.ts +3007 -3007
  245. package/BackerService/BackerServiceClient.ts +50 -50
  246. package/BackerService/core/ApiError.ts +20 -20
  247. package/BackerService/core/ApiRequestOptions.ts +12 -12
  248. package/BackerService/core/ApiResult.ts +6 -6
  249. package/BackerService/core/BaseHttpRequest.ts +9 -9
  250. package/BackerService/core/CancelablePromise.ts +125 -125
  251. package/BackerService/core/FetchHttpRequest.ts +21 -21
  252. package/BackerService/core/OpenAPI.ts +55 -55
  253. package/BackerService/core/request.ts +340 -340
  254. package/BackerService/index.ts +8 -8
  255. package/BackerService/schemas.gen.ts +12444 -12444
  256. package/BackerService/services.gen.ts +866 -866
  257. package/BackerService/types.gen.ts +2170 -2170
  258. package/CRMService/core/ApiRequestOptions.ts +16 -8
  259. package/CRMService/core/OpenAPI.ts +3 -3
  260. package/CRMService/core/request.ts +14 -5
  261. package/CRMService/index.ts +3 -4
  262. package/CRMService/schemas.gen.ts +52 -0
  263. package/CRMService/sdk.gen.ts +3193 -0
  264. package/CRMService/types.gen.ts +401 -4471
  265. package/ContractService/ContractServiceClient.ts +65 -65
  266. package/ContractService/core/ApiError.ts +20 -20
  267. package/ContractService/core/ApiRequestOptions.ts +12 -12
  268. package/ContractService/core/ApiResult.ts +6 -6
  269. package/ContractService/core/BaseHttpRequest.ts +9 -9
  270. package/ContractService/core/CancelablePromise.ts +125 -125
  271. package/ContractService/core/FetchHttpRequest.ts +21 -21
  272. package/ContractService/core/OpenAPI.ts +55 -55
  273. package/ContractService/core/request.ts +340 -340
  274. package/ContractService/index.ts +8 -8
  275. package/ContractService/schemas.gen.ts +12076 -12076
  276. package/ContractService/services.gen.ts +1882 -1882
  277. package/ContractService/types.gen.ts +4145 -4145
  278. package/ExportValidationService/ExportValidationServiceClient.ts +44 -44
  279. package/ExportValidationService/core/ApiError.ts +20 -20
  280. package/ExportValidationService/core/ApiRequestOptions.ts +12 -12
  281. package/ExportValidationService/core/ApiResult.ts +6 -6
  282. package/ExportValidationService/core/BaseHttpRequest.ts +9 -9
  283. package/ExportValidationService/core/CancelablePromise.ts +125 -125
  284. package/ExportValidationService/core/FetchHttpRequest.ts +21 -21
  285. package/ExportValidationService/core/OpenAPI.ts +55 -55
  286. package/ExportValidationService/core/request.ts +340 -340
  287. package/ExportValidationService/index.ts +8 -8
  288. package/ExportValidationService/schemas.gen.ts +3998 -3998
  289. package/ExportValidationService/services.gen.ts +260 -260
  290. package/ExportValidationService/types.gen.ts +818 -818
  291. package/FinanceService/FinanceServiceClient.ts +47 -47
  292. package/FinanceService/core/ApiError.ts +20 -20
  293. package/FinanceService/core/ApiRequestOptions.ts +12 -12
  294. package/FinanceService/core/ApiResult.ts +6 -6
  295. package/FinanceService/core/BaseHttpRequest.ts +9 -9
  296. package/FinanceService/core/CancelablePromise.ts +125 -125
  297. package/FinanceService/core/FetchHttpRequest.ts +21 -21
  298. package/FinanceService/core/OpenAPI.ts +55 -55
  299. package/FinanceService/core/request.ts +340 -340
  300. package/FinanceService/index.ts +8 -8
  301. package/FinanceService/schemas.gen.ts +5006 -5006
  302. package/FinanceService/services.gen.ts +339 -339
  303. package/FinanceService/types.gen.ts +1128 -1128
  304. package/FundraiserService/FundraiserServiceClient.ts +47 -47
  305. package/FundraiserService/core/ApiError.ts +20 -20
  306. package/FundraiserService/core/ApiRequestOptions.ts +12 -12
  307. package/FundraiserService/core/ApiResult.ts +6 -6
  308. package/FundraiserService/core/BaseHttpRequest.ts +9 -9
  309. package/FundraiserService/core/CancelablePromise.ts +125 -125
  310. package/FundraiserService/core/FetchHttpRequest.ts +21 -21
  311. package/FundraiserService/core/OpenAPI.ts +55 -55
  312. package/FundraiserService/core/request.ts +340 -340
  313. package/FundraiserService/index.ts +8 -8
  314. package/FundraiserService/schemas.gen.ts +11548 -11548
  315. package/FundraiserService/services.gen.ts +627 -627
  316. package/FundraiserService/types.gen.ts +1793 -1793
  317. package/IdentityService/IdentityServiceClient.ts +86 -86
  318. package/IdentityService/core/ApiError.ts +20 -20
  319. package/IdentityService/core/ApiRequestOptions.ts +12 -12
  320. package/IdentityService/core/ApiResult.ts +6 -6
  321. package/IdentityService/core/BaseHttpRequest.ts +9 -9
  322. package/IdentityService/core/CancelablePromise.ts +125 -125
  323. package/IdentityService/core/FetchHttpRequest.ts +21 -21
  324. package/IdentityService/core/OpenAPI.ts +55 -55
  325. package/IdentityService/core/request.ts +340 -340
  326. package/IdentityService/index.ts +8 -8
  327. package/IdentityService/models/Volo_Abp_Account_AccountExternalProviderSettingsDto.ts +9 -9
  328. package/IdentityService/models/Volo_Abp_Account_AccountRecaptchaSettingsDto.ts +14 -14
  329. package/IdentityService/models/Volo_Abp_Account_AccountSettingsDto.ts +9 -9
  330. package/IdentityService/models/Volo_Abp_Account_AccountTwoFactorSettingsDto.ts +11 -11
  331. package/IdentityService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettings.ts +12 -12
  332. package/IdentityService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty.ts +9 -9
  333. package/IdentityService/models/Volo_Abp_Account_UpdateExternalProviderDto.ts +12 -12
  334. package/IdentityService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -9
  335. package/IdentityService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -10
  336. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -8
  337. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -30
  338. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -8
  339. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -8
  340. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -18
  341. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -9
  342. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -9
  343. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -8
  344. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -8
  345. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -17
  346. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -22
  347. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -14
  348. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -8
  349. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -10
  350. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -10
  351. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -9
  352. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -8
  353. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -13
  354. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -8
  355. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -8
  356. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -9
  357. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -19
  358. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -14
  359. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -8
  360. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -12
  361. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -8
  362. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -9
  363. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -10
  364. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -11
  365. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -11
  366. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -9
  367. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -8
  368. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -10
  369. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -8
  370. package/IdentityService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -20
  371. package/IdentityService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -11
  372. package/IdentityService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -17
  373. package/IdentityService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -11
  374. package/IdentityService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -12
  375. package/IdentityService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -13
  376. package/IdentityService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -11
  377. package/IdentityService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -17
  378. package/IdentityService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -17
  379. package/IdentityService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -9
  380. package/IdentityService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -14
  381. package/IdentityService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -13
  382. package/IdentityService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -9
  383. package/IdentityService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -9
  384. package/IdentityService/models/Volo_Abp_Identity_ClaimTypeDto.ts +19 -19
  385. package/IdentityService/models/Volo_Abp_Identity_CreateClaimTypeDto.ts +15 -15
  386. package/IdentityService/models/Volo_Abp_Identity_DownloadTokenResultDto.ts +8 -8
  387. package/IdentityService/models/Volo_Abp_Identity_ExternalLoginProviderDto.ts +9 -9
  388. package/IdentityService/models/Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour.ts +9 -9
  389. package/IdentityService/models/Volo_Abp_Identity_IdentityClaimValueType.ts +10 -10
  390. package/IdentityService/models/Volo_Abp_Identity_IdentityLdapSettingsDto.ts +15 -15
  391. package/IdentityService/models/Volo_Abp_Identity_IdentityLockoutSettingsDto.ts +10 -10
  392. package/IdentityService/models/Volo_Abp_Identity_IdentityOAuthSettingsDto.ts +15 -15
  393. package/IdentityService/models/Volo_Abp_Identity_IdentityPasswordSettingsDto.ts +15 -15
  394. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleClaimDto.ts +10 -10
  395. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleCreateDto.ts +11 -11
  396. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleDto.ts +15 -15
  397. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleLookupDto.ts +9 -9
  398. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleUpdateDto.ts +12 -12
  399. package/IdentityService/models/Volo_Abp_Identity_IdentitySecurityLogDto.ts +21 -21
  400. package/IdentityService/models/Volo_Abp_Identity_IdentitySettingsDto.ts +15 -15
  401. package/IdentityService/models/Volo_Abp_Identity_IdentitySignInSettingsDto.ts +10 -10
  402. package/IdentityService/models/Volo_Abp_Identity_IdentityUserClaimDto.ts +10 -10
  403. package/IdentityService/models/Volo_Abp_Identity_IdentityUserCreateDto.ts +20 -20
  404. package/IdentityService/models/Volo_Abp_Identity_IdentityUserDto.ts +35 -35
  405. package/IdentityService/models/Volo_Abp_Identity_IdentityUserSettingsDto.ts +9 -9
  406. package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdateDto.ts +19 -19
  407. package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdatePasswordInput.ts +8 -8
  408. package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdateRolesDto.ts +8 -8
  409. package/IdentityService/models/Volo_Abp_Identity_ImportExternalUserInput.ts +10 -10
  410. package/IdentityService/models/Volo_Abp_Identity_ImportUsersFromFileOutput.ts +12 -12
  411. package/IdentityService/models/Volo_Abp_Identity_ImportUsersFromFileType.ts +8 -8
  412. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitCreateDto.ts +10 -10
  413. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitDto.ts +21 -21
  414. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitLookupDto.ts +9 -9
  415. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitMoveInput.ts +8 -8
  416. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitRoleDto.ts +11 -11
  417. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitRoleInput.ts +8 -8
  418. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitUpdateDto.ts +10 -10
  419. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitUserInput.ts +8 -8
  420. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitWithDetailsDto.ts +23 -23
  421. package/IdentityService/models/Volo_Abp_Identity_UpdateClaimTypeDto.ts +16 -16
  422. package/IdentityService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -12
  423. package/IdentityService/models/Volo_Abp_NameValue.ts +9 -9
  424. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationDto.ts +29 -29
  425. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationTokenLifetimeDto.ts +13 -13
  426. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_CreateApplicationInput.ts +28 -28
  427. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_UpdateApplicationInput.ts +28 -28
  428. package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_CreateScopeInput.ts +12 -12
  429. package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_ScopeDto.ts +14 -14
  430. package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_UpdateScopeInput.ts +12 -12
  431. package/IdentityService/models/Volo_Abp_Users_UserData.ts +18 -18
  432. package/IdentityService/schemas.gen.ts +6928 -6928
  433. package/IdentityService/services/AbpApiDefinitionService.ts +34 -34
  434. package/IdentityService/services/AbpApplicationConfigurationService.ts +34 -34
  435. package/IdentityService/services/AbpApplicationLocalizationService.ts +37 -37
  436. package/IdentityService/services/AccountSettingsService.ts +178 -178
  437. package/IdentityService/services/ApplicationsService.ts +199 -199
  438. package/IdentityService/services/ClaimTypeService.ts +149 -149
  439. package/IdentityService/services/ExternalLoginService.ts +27 -27
  440. package/IdentityService/services/OrganizationUnitService.ts +539 -539
  441. package/IdentityService/services/RoleService.ts +269 -269
  442. package/IdentityService/services/ScopesService.ts +164 -164
  443. package/IdentityService/services/SecurityLogService.ts +174 -174
  444. package/IdentityService/services/SettingsService.ts +135 -135
  445. package/IdentityService/services/UserIntegrationService.ts +144 -144
  446. package/IdentityService/services/UserLookupService.ts +120 -120
  447. package/IdentityService/services/UserService.ts +937 -937
  448. package/IdentityService/services.gen.ts +3154 -3154
  449. package/IdentityService/types.gen.ts +5874 -5874
  450. package/LocationService/LocationServiceClient.ts +74 -74
  451. package/LocationService/core/ApiError.ts +20 -20
  452. package/LocationService/core/ApiRequestOptions.ts +12 -12
  453. package/LocationService/core/ApiResult.ts +6 -6
  454. package/LocationService/core/BaseHttpRequest.ts +9 -9
  455. package/LocationService/core/CancelablePromise.ts +125 -125
  456. package/LocationService/core/FetchHttpRequest.ts +21 -21
  457. package/LocationService/core/OpenAPI.ts +55 -55
  458. package/LocationService/core/request.ts +340 -340
  459. package/LocationService/index.ts +8 -8
  460. package/LocationService/schemas.gen.ts +6635 -6635
  461. package/LocationService/services.gen.ts +1797 -1797
  462. package/LocationService/types.gen.ts +3738 -3738
  463. package/MerchantService/MerchantServiceClient.ts +77 -77
  464. package/MerchantService/core/ApiError.ts +20 -20
  465. package/MerchantService/core/ApiRequestOptions.ts +12 -12
  466. package/MerchantService/core/ApiResult.ts +6 -6
  467. package/MerchantService/core/BaseHttpRequest.ts +9 -9
  468. package/MerchantService/core/CancelablePromise.ts +125 -125
  469. package/MerchantService/core/FetchHttpRequest.ts +21 -21
  470. package/MerchantService/core/OpenAPI.ts +55 -55
  471. package/MerchantService/core/request.ts +340 -340
  472. package/MerchantService/index.ts +8 -8
  473. package/MerchantService/schemas.gen.ts +14764 -14764
  474. package/MerchantService/services.gen.ts +1602 -1602
  475. package/MerchantService/types.gen.ts +18875 -18875
  476. package/ProjectService/ProjectServiceClient.ts +47 -47
  477. package/ProjectService/core/ApiError.ts +20 -20
  478. package/ProjectService/core/ApiRequestOptions.ts +12 -12
  479. package/ProjectService/core/ApiResult.ts +6 -6
  480. package/ProjectService/core/BaseHttpRequest.ts +9 -9
  481. package/ProjectService/core/CancelablePromise.ts +125 -125
  482. package/ProjectService/core/FetchHttpRequest.ts +21 -21
  483. package/ProjectService/core/OpenAPI.ts +55 -55
  484. package/ProjectService/core/request.ts +340 -340
  485. package/ProjectService/index.ts +8 -8
  486. package/ProjectService/schemas.gen.ts +5147 -5147
  487. package/ProjectService/services.gen.ts +492 -492
  488. package/ProjectService/types.gen.ts +1303 -1303
  489. package/README.md +40 -39
  490. package/RefundService/RefundServiceClient.ts +44 -44
  491. package/RefundService/core/ApiError.ts +20 -20
  492. package/RefundService/core/ApiRequestOptions.ts +12 -12
  493. package/RefundService/core/ApiResult.ts +6 -6
  494. package/RefundService/core/BaseHttpRequest.ts +9 -9
  495. package/RefundService/core/CancelablePromise.ts +125 -125
  496. package/RefundService/core/FetchHttpRequest.ts +21 -21
  497. package/RefundService/core/OpenAPI.ts +55 -55
  498. package/RefundService/core/request.ts +340 -340
  499. package/RefundService/index.ts +8 -8
  500. package/RefundService/schemas.gen.ts +5237 -5237
  501. package/RefundService/services.gen.ts +347 -347
  502. package/RefundService/types.gen.ts +1042 -1042
  503. package/SaasService/SaasServiceClient.ts +65 -65
  504. package/SaasService/core/ApiError.ts +20 -20
  505. package/SaasService/core/ApiRequestOptions.ts +12 -12
  506. package/SaasService/core/ApiResult.ts +6 -6
  507. package/SaasService/core/BaseHttpRequest.ts +9 -9
  508. package/SaasService/core/CancelablePromise.ts +125 -125
  509. package/SaasService/core/FetchHttpRequest.ts +21 -21
  510. package/SaasService/core/OpenAPI.ts +55 -55
  511. package/SaasService/core/request.ts +340 -340
  512. package/SaasService/index.ts +8 -8
  513. package/SaasService/schemas.gen.ts +5345 -5345
  514. package/SaasService/services.gen.ts +1329 -1329
  515. package/SaasService/types.gen.ts +2737 -2737
  516. package/SettingService/SettingServiceClient.ts +59 -59
  517. package/SettingService/core/ApiError.ts +20 -20
  518. package/SettingService/core/ApiRequestOptions.ts +12 -12
  519. package/SettingService/core/ApiResult.ts +6 -6
  520. package/SettingService/core/BaseHttpRequest.ts +9 -9
  521. package/SettingService/core/CancelablePromise.ts +125 -125
  522. package/SettingService/core/FetchHttpRequest.ts +21 -21
  523. package/SettingService/core/OpenAPI.ts +55 -55
  524. package/SettingService/core/request.ts +340 -340
  525. package/SettingService/index.ts +8 -8
  526. package/SettingService/schemas.gen.ts +5223 -5223
  527. package/SettingService/services.gen.ts +758 -758
  528. package/SettingService/types.gen.ts +1800 -1800
  529. package/TagService/TagServiceClient.ts +47 -47
  530. package/TagService/core/ApiError.ts +20 -20
  531. package/TagService/core/ApiRequestOptions.ts +12 -12
  532. package/TagService/core/ApiResult.ts +6 -6
  533. package/TagService/core/BaseHttpRequest.ts +9 -9
  534. package/TagService/core/CancelablePromise.ts +125 -125
  535. package/TagService/core/FetchHttpRequest.ts +21 -21
  536. package/TagService/core/OpenAPI.ts +55 -55
  537. package/TagService/core/request.ts +340 -340
  538. package/TagService/index.ts +8 -8
  539. package/TagService/schemas.gen.ts +5830 -5830
  540. package/TagService/services.gen.ts +556 -556
  541. package/TagService/types.gen.ts +1487 -1487
  542. package/TravellerService/TravellerServiceClient.ts +59 -59
  543. package/TravellerService/core/ApiError.ts +20 -20
  544. package/TravellerService/core/ApiRequestOptions.ts +12 -12
  545. package/TravellerService/core/ApiResult.ts +6 -6
  546. package/TravellerService/core/BaseHttpRequest.ts +9 -9
  547. package/TravellerService/core/CancelablePromise.ts +125 -125
  548. package/TravellerService/core/FetchHttpRequest.ts +21 -21
  549. package/TravellerService/core/OpenAPI.ts +55 -55
  550. package/TravellerService/core/request.ts +340 -340
  551. package/TravellerService/index.ts +8 -8
  552. package/TravellerService/schemas.gen.ts +6396 -6396
  553. package/TravellerService/services.gen.ts +949 -949
  554. package/TravellerService/types.gen.ts +2220 -2220
  555. package/index.mjs +38 -0
  556. package/package.json +37 -41
  557. package/CRMService/CRMServiceClient.ts +0 -77
  558. package/CRMService/core/BaseHttpRequest.ts +0 -10
  559. package/CRMService/core/FetchHttpRequest.ts +0 -22
  560. package/CRMService/services.gen.ts +0 -3267
  561. package/ProjectService.json +0 -2938
  562. package/generator.mjs +0 -221
  563. package/index.ts +0 -2
  564. package/swagger.json +0 -4795
  565. package/upwithcrowdService/core/ApiError.ts +0 -21
  566. package/upwithcrowdService/core/ApiRequestOptions.ts +0 -13
  567. package/upwithcrowdService/core/ApiResult.ts +0 -7
  568. package/upwithcrowdService/core/BaseHttpRequest.ts +0 -10
  569. package/upwithcrowdService/core/CancelablePromise.ts +0 -126
  570. package/upwithcrowdService/core/FetchHttpRequest.ts +0 -22
  571. package/upwithcrowdService/core/OpenAPI.ts +0 -56
  572. package/upwithcrowdService/core/request.ts +0 -341
  573. package/upwithcrowdService/index.ts +0 -9
  574. package/upwithcrowdService/schemas.gen.ts +0 -11974
  575. package/upwithcrowdService/services.gen.ts +0 -6556
  576. package/upwithcrowdService/types.gen.ts +0 -12239
  577. package/upwithcrowdService/upwithcrowdServiceClient.ts +0 -161
@@ -1,1129 +1,1129 @@
1
- // This file is auto-generated by @hey-api/openapi-ts
2
-
3
- export type PagedResultDto_RebateStatementHeaderForListDto = {
4
- items?: Array<UniRefund_FinanceService_RebateStatementHeaders_RebateStatementHeaderForListDto> | null;
5
- totalCount?: number;
6
- };
7
-
8
- export type PagedResultDto_VATStatementHeaderForListDto = {
9
- items?: Array<UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderForListDto> | null;
10
- totalCount?: number;
11
- };
12
-
13
- export type UniRefund_ContractService_Enums_InvoiceChannel = 'ElectronicInvoice' | 'Email' | 'PaperInvoice';
14
-
15
- export type UniRefund_ContractService_Enums_InvoicingFrequency = 'OneTimePerMonth' | 'TwoTimesPerMonth';
16
-
17
- export type UniRefund_ContractService_Enums_RebateStatementPeriod = 'None' | 'Monthly' | 'Quarterly' | 'BiAnnually' | 'Annually';
18
-
19
- export type UniRefund_FinanceService_Enums_PaymentStatus = 'NotPaid' | 'PartlyPaid' | 'Paid' | 'OverPaid';
20
-
21
- export type UniRefund_FinanceService_Enums_RebateStatementStatus = 'Unfinished' | 'Approved' | 'Processing' | 'Error' | 'Sent' | 'PaymentReminder1' | 'PaymentReminder2' | 'PaymentReminder3' | 'DebtCollection' | 'Cancelled' | 'CreditNote' | 'Paid';
22
-
23
- export type UniRefund_FinanceService_Enums_VATStatementStatus = 'Sent' | 'PaymentReminder1' | 'PaymentReminder2' | 'PaymentReminder3' | 'DebtCollection' | 'Cancelled' | 'CreditNote' | 'Paid';
24
-
25
- export type UniRefund_FinanceService_RebateStatementHeaders_RebateStatementHeaderCreateDto = {
26
- rebateStatementDate: string;
27
- yearMonthPairs: Array<UniRefund_FinanceService_RebateStatementHeaders_YearMonthPairDto>;
28
- };
29
-
30
- export type UniRefund_FinanceService_RebateStatementHeaders_RebateStatementHeaderDetailDto = {
31
- id: string;
32
- readonly number: string;
33
- merchantId: string;
34
- merchantName: string;
35
- rebateStatementDate: string;
36
- total: number;
37
- status: UniRefund_FinanceService_Enums_RebateStatementStatus;
38
- period: UniRefund_ContractService_Enums_RebateStatementPeriod;
39
- readonly customerNumber: string;
40
- contractHeaderId?: string;
41
- rebateStatementStoreDetails?: Array<UniRefund_FinanceService_RebateStatementStoreDetails_RebateStatementStoreDetailDto> | null;
42
- };
43
-
44
- export type UniRefund_FinanceService_RebateStatementHeaders_RebateStatementHeaderDraftDto = {
45
- merchantId: string;
46
- merchantName: string;
47
- rebateStatementDate: string;
48
- total: number;
49
- status: UniRefund_FinanceService_Enums_RebateStatementStatus;
50
- period: UniRefund_ContractService_Enums_RebateStatementPeriod;
51
- customerNumber: string;
52
- contractHeaderId: string;
53
- rebateStatementStoreDetails?: Array<UniRefund_FinanceService_RebateStatementStoreDetails_RebateStatementStoreDetailDraftDto> | null;
54
- };
55
-
56
- export type UniRefund_FinanceService_RebateStatementHeaders_RebateStatementHeaderDto = {
57
- merchantId: string;
58
- merchantName: string;
59
- rebateStatementDate: string;
60
- total: number;
61
- status: UniRefund_FinanceService_Enums_RebateStatementStatus;
62
- period: UniRefund_ContractService_Enums_RebateStatementPeriod;
63
- customerNumber: string;
64
- contractHeaderId: string;
65
- rebateStatementStoreDetails?: Array<UniRefund_FinanceService_RebateStatementStoreDetails_RebateStatementStoreDetailDraftDto> | null;
66
- id: string;
67
- number: string;
68
- };
69
-
70
- export type UniRefund_FinanceService_RebateStatementHeaders_RebateStatementHeaderForListDto = {
71
- id: string;
72
- merchantId: string;
73
- merchantName?: string | null;
74
- rebateStatementDate: string;
75
- number: string;
76
- total: number;
77
- status: UniRefund_FinanceService_Enums_RebateStatementStatus;
78
- period: UniRefund_ContractService_Enums_RebateStatementPeriod;
79
- };
80
-
81
- export type UniRefund_FinanceService_RebateStatementHeaders_YearMonthPairDto = {
82
- year: number;
83
- month: number;
84
- };
85
-
86
- export type UniRefund_FinanceService_RebateStatementStoreDetails_RebateStatementStoreDetailDraftDto = {
87
- merchantId: string;
88
- merchantName: string;
89
- tagCount: number;
90
- grandTotalAmount: number;
91
- vatAmount: number;
92
- rebateAmount: number;
93
- referenceDateBegin: string;
94
- vatStatementHeaderId: string;
95
- invoiceNumber: string;
96
- };
97
-
98
- export type UniRefund_FinanceService_RebateStatementStoreDetails_RebateStatementStoreDetailDto = {
99
- merchantId: string;
100
- merchantName: string;
101
- tagCount: number;
102
- grandTotalAmount: number;
103
- vatAmount: number;
104
- rebateAmount: number;
105
- referenceDateBegin: string;
106
- vatStatementHeaderId: string;
107
- invoiceNumber: string;
108
- id: string;
109
- };
110
-
111
- export type UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderBasicInformationDto = {
112
- id: string;
113
- vatStatementDate: string;
114
- invoiceNumber: string;
115
- status: UniRefund_FinanceService_Enums_VATStatementStatus;
116
- };
117
-
118
- export type UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderCreateDto = {
119
- readonly extraProperties?: {
120
- [key: string]: unknown;
121
- } | null;
122
- year: number;
123
- month: number;
124
- vatStatementDate: string;
125
- };
126
-
127
- export type UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderDetailDto = {
128
- merchantId: string;
129
- tagCount: number;
130
- merchantName: string;
131
- vatStatementDate: string;
132
- dueDate: string;
133
- total: number;
134
- unpaid: number;
135
- status: UniRefund_FinanceService_Enums_VATStatementStatus;
136
- billingPeriod: UniRefund_ContractService_Enums_InvoicingFrequency;
137
- termOfPayment: number;
138
- paymentStatus: UniRefund_FinanceService_Enums_PaymentStatus;
139
- isFactoring?: boolean;
140
- referenceDateBegin: string;
141
- referenceDateEnd: string;
142
- deliveryMethod: UniRefund_ContractService_Enums_InvoiceChannel;
143
- customerNumber?: string | null;
144
- referenceNumber?: string | null;
145
- yourReference?: string | null;
146
- contractHeaderId: string;
147
- rebateStatementHeaderId?: string | null;
148
- vatStatementTagDetails?: Array<UniRefund_FinanceService_VATStatementTagDetails_VATStatementTagDetailDto> | null;
149
- id: string;
150
- invoiceNumber: string;
151
- };
152
-
153
- export type UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderDraftDto = {
154
- merchantId: string;
155
- tagCount: number;
156
- merchantName: string;
157
- vatStatementDate: string;
158
- dueDate: string;
159
- total: number;
160
- unpaid: number;
161
- status: UniRefund_FinanceService_Enums_VATStatementStatus;
162
- billingPeriod: UniRefund_ContractService_Enums_InvoicingFrequency;
163
- termOfPayment: number;
164
- paymentStatus: UniRefund_FinanceService_Enums_PaymentStatus;
165
- isFactoring?: boolean;
166
- referenceDateBegin: string;
167
- referenceDateEnd: string;
168
- deliveryMethod: UniRefund_ContractService_Enums_InvoiceChannel;
169
- customerNumber?: string | null;
170
- referenceNumber?: string | null;
171
- yourReference?: string | null;
172
- contractHeaderId: string;
173
- rebateStatementHeaderId?: string | null;
174
- vatStatementTagDetails?: Array<UniRefund_FinanceService_VATStatementTagDetails_VATStatementTagDetailDraftDto> | null;
175
- };
176
-
177
- export type UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderDto = {
178
- merchantId: string;
179
- tagCount: number;
180
- merchantName: string;
181
- vatStatementDate: string;
182
- dueDate: string;
183
- total: number;
184
- unpaid: number;
185
- status: UniRefund_FinanceService_Enums_VATStatementStatus;
186
- billingPeriod: UniRefund_ContractService_Enums_InvoicingFrequency;
187
- termOfPayment: number;
188
- paymentStatus: UniRefund_FinanceService_Enums_PaymentStatus;
189
- isFactoring?: boolean;
190
- referenceDateBegin: string;
191
- referenceDateEnd: string;
192
- deliveryMethod: UniRefund_ContractService_Enums_InvoiceChannel;
193
- customerNumber?: string | null;
194
- referenceNumber?: string | null;
195
- yourReference?: string | null;
196
- contractHeaderId: string;
197
- rebateStatementHeaderId?: string | null;
198
- vatStatementTagDetails?: Array<UniRefund_FinanceService_VATStatementTagDetails_VATStatementTagDetailDto> | null;
199
- id: string;
200
- invoiceNumber: string;
201
- };
202
-
203
- export type UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderForListDto = {
204
- id: string;
205
- invoiceNumber: string;
206
- merchantId: string;
207
- tagCount: number;
208
- merchantName: string;
209
- vatStatementDate: string;
210
- dueDate: string;
211
- total: number;
212
- unpaid: number;
213
- status: UniRefund_FinanceService_Enums_VATStatementStatus;
214
- paymentStatus: UniRefund_FinanceService_Enums_PaymentStatus;
215
- };
216
-
217
- export type UniRefund_FinanceService_VATStatementTagDetails_VATStatementTagDetailDraftDto = {
218
- tagId: string;
219
- merchantId: string;
220
- merchantName: string;
221
- tagNumber: string;
222
- refundDate: string;
223
- grandTotal: number;
224
- taxAmount: number;
225
- refundAmount: number;
226
- correctedAmount?: number | null;
227
- currency: string;
228
- };
229
-
230
- export type UniRefund_FinanceService_VATStatementTagDetails_VATStatementTagDetailDto = {
231
- tagId: string;
232
- merchantId: string;
233
- merchantName: string;
234
- tagNumber: string;
235
- refundDate: string;
236
- grandTotal: number;
237
- taxAmount: number;
238
- refundAmount: number;
239
- correctedAmount?: number | null;
240
- currency: string;
241
- id: string;
242
- };
243
-
244
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
245
- grantedPolicies?: {
246
- [key: string]: (boolean);
247
- } | null;
248
- };
249
-
250
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
251
- localization?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto;
252
- auth?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto;
253
- setting?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto;
254
- currentUser?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto;
255
- features?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto;
256
- globalFeatures?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto;
257
- multiTenancy?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto;
258
- currentTenant?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto;
259
- timing?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto;
260
- clock?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto;
261
- objectExtensions?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto;
262
- extraProperties?: {
263
- [key: string]: unknown;
264
- } | null;
265
- };
266
-
267
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto = {
268
- values?: {
269
- [key: string]: (string | null);
270
- } | null;
271
- };
272
-
273
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto = {
274
- enabledFeatures?: Array<(string)> | null;
275
- };
276
-
277
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto = {
278
- values?: {
279
- [key: string]: {
280
- [key: string]: (string);
281
- };
282
- } | null;
283
- resources?: {
284
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
285
- } | null;
286
- languages?: Array<Volo_Abp_Localization_LanguageInfo> | null;
287
- currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
288
- defaultResourceName?: string | null;
289
- languagesMap?: {
290
- [key: string]: Array<Volo_Abp_NameValue>;
291
- } | null;
292
- languageFilesMap?: {
293
- [key: string]: Array<Volo_Abp_NameValue>;
294
- } | null;
295
- };
296
-
297
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
298
- resources?: {
299
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
300
- } | null;
301
- currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
302
- };
303
-
304
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto = {
305
- texts?: {
306
- [key: string]: (string);
307
- } | null;
308
- baseResources?: Array<(string)> | null;
309
- };
310
-
311
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto = {
312
- values?: {
313
- [key: string]: (string | null);
314
- } | null;
315
- };
316
-
317
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto = {
318
- kind?: string | null;
319
- };
320
-
321
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto = {
322
- displayName?: string | null;
323
- englishName?: string | null;
324
- threeLetterIsoLanguageName?: string | null;
325
- twoLetterIsoLanguageName?: string | null;
326
- isRightToLeft?: boolean;
327
- cultureName?: string | null;
328
- name?: string | null;
329
- nativeName?: string | null;
330
- dateTimeFormat?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto;
331
- };
332
-
333
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
334
- isAuthenticated?: boolean;
335
- id?: string | null;
336
- tenantId?: string | null;
337
- impersonatorUserId?: string | null;
338
- impersonatorTenantId?: string | null;
339
- impersonatorUserName?: string | null;
340
- impersonatorTenantName?: string | null;
341
- userName?: string | null;
342
- name?: string | null;
343
- surName?: string | null;
344
- email?: string | null;
345
- emailVerified?: boolean;
346
- phoneNumber?: string | null;
347
- phoneNumberVerified?: boolean;
348
- roles?: Array<(string)> | null;
349
- sessionId?: string | null;
350
- };
351
-
352
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto = {
353
- calendarAlgorithmType?: string | null;
354
- dateTimeFormatLong?: string | null;
355
- shortDatePattern?: string | null;
356
- fullDateTimePattern?: string | null;
357
- dateSeparator?: string | null;
358
- shortTimePattern?: string | null;
359
- longTimePattern?: string | null;
360
- };
361
-
362
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone = {
363
- timeZoneName?: string | null;
364
- };
365
-
366
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
367
- properties?: {
368
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto;
369
- } | null;
370
- configuration?: {
371
- [key: string]: unknown;
372
- } | null;
373
- };
374
-
375
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
376
- fields?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto> | null;
377
- localizationResource?: string | null;
378
- };
379
-
380
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto = {
381
- name?: string | null;
382
- value?: unknown;
383
- };
384
-
385
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto = {
386
- isAvailable?: boolean;
387
- };
388
-
389
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
390
- onGet?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto;
391
- onCreate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto;
392
- onUpdate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto;
393
- };
394
-
395
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
396
- isAvailable?: boolean;
397
- };
398
-
399
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto = {
400
- isAvailable?: boolean;
401
- };
402
-
403
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto = {
404
- typeSimple?: string | null;
405
- config?: {
406
- [key: string]: unknown;
407
- } | null;
408
- };
409
-
410
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
411
- type?: string | null;
412
- typeSimple?: string | null;
413
- displayName?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto;
414
- api?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto;
415
- ui?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto;
416
- attributes?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto> | null;
417
- configuration?: {
418
- [key: string]: unknown;
419
- } | null;
420
- defaultValue?: unknown;
421
- };
422
-
423
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
424
- onTable?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto;
425
- onCreateForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
426
- onEditForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
427
- lookup?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto;
428
- };
429
-
430
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
431
- isVisible?: boolean;
432
- };
433
-
434
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto = {
435
- url?: string | null;
436
- resultListPropertyName?: string | null;
437
- displayPropertyName?: string | null;
438
- valuePropertyName?: string | null;
439
- filterParamName?: string | null;
440
- };
441
-
442
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto = {
443
- isVisible?: boolean;
444
- };
445
-
446
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto = {
447
- name?: string | null;
448
- resource?: string | null;
449
- };
450
-
451
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto = {
452
- entities?: {
453
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto;
454
- } | null;
455
- configuration?: {
456
- [key: string]: unknown;
457
- } | null;
458
- };
459
-
460
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto = {
461
- modules?: {
462
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto;
463
- } | null;
464
- enums?: {
465
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto;
466
- } | null;
467
- };
468
-
469
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
470
- iana?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone;
471
- windows?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone;
472
- };
473
-
474
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
475
- timeZone?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone;
476
- };
477
-
478
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone = {
479
- timeZoneId?: string | null;
480
- };
481
-
482
- export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto = {
483
- id?: string | null;
484
- name?: string | null;
485
- isAvailable?: boolean;
486
- };
487
-
488
- export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto = {
489
- isEnabled?: boolean;
490
- };
491
-
492
- export type Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
493
- uniqueName?: string | null;
494
- name?: string | null;
495
- httpMethod?: string | null;
496
- url?: string | null;
497
- supportedVersions?: Array<(string)> | null;
498
- parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
499
- parameters?: Array<Volo_Abp_Http_Modeling_ParameterApiDescriptionModel> | null;
500
- returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
501
- allowAnonymous?: boolean | null;
502
- implementFrom?: string | null;
503
- };
504
-
505
- export type Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
506
- modules?: {
507
- [key: string]: Volo_Abp_Http_Modeling_ModuleApiDescriptionModel;
508
- } | null;
509
- types?: {
510
- [key: string]: Volo_Abp_Http_Modeling_TypeApiDescriptionModel;
511
- } | null;
512
- };
513
-
514
- export type Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
515
- controllerName?: string | null;
516
- controllerGroupName?: string | null;
517
- isRemoteService?: boolean;
518
- isIntegrationService?: boolean;
519
- apiVersion?: string | null;
520
- type?: string | null;
521
- interfaces?: Array<Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel> | null;
522
- actions?: {
523
- [key: string]: Volo_Abp_Http_Modeling_ActionApiDescriptionModel;
524
- } | null;
525
- };
526
-
527
- export type Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
528
- type?: string | null;
529
- name?: string | null;
530
- methods?: Array<Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel> | null;
531
- };
532
-
533
- export type Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
534
- name?: string | null;
535
- parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
536
- returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
537
- };
538
-
539
- export type Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel = {
540
- name?: string | null;
541
- typeAsString?: string | null;
542
- type?: string | null;
543
- typeSimple?: string | null;
544
- isOptional?: boolean;
545
- defaultValue?: unknown;
546
- };
547
-
548
- export type Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
549
- rootPath?: string | null;
550
- remoteServiceName?: string | null;
551
- controllers?: {
552
- [key: string]: Volo_Abp_Http_Modeling_ControllerApiDescriptionModel;
553
- } | null;
554
- };
555
-
556
- export type Volo_Abp_Http_Modeling_ParameterApiDescriptionModel = {
557
- nameOnMethod?: string | null;
558
- name?: string | null;
559
- jsonName?: string | null;
560
- type?: string | null;
561
- typeSimple?: string | null;
562
- isOptional?: boolean;
563
- defaultValue?: unknown;
564
- constraintTypes?: Array<(string)> | null;
565
- bindingSourceId?: string | null;
566
- descriptorName?: string | null;
567
- };
568
-
569
- export type Volo_Abp_Http_Modeling_PropertyApiDescriptionModel = {
570
- name?: string | null;
571
- jsonName?: string | null;
572
- type?: string | null;
573
- typeSimple?: string | null;
574
- isRequired?: boolean;
575
- minLength?: number | null;
576
- maxLength?: number | null;
577
- minimum?: string | null;
578
- maximum?: string | null;
579
- regex?: string | null;
580
- };
581
-
582
- export type Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel = {
583
- type?: string | null;
584
- typeSimple?: string | null;
585
- };
586
-
587
- export type Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
588
- baseType?: string | null;
589
- isEnum?: boolean;
590
- enumNames?: Array<(string)> | null;
591
- enumValues?: Array<unknown> | null;
592
- genericArguments?: Array<(string)> | null;
593
- properties?: Array<Volo_Abp_Http_Modeling_PropertyApiDescriptionModel> | null;
594
- };
595
-
596
- export type Volo_Abp_Http_RemoteServiceErrorInfo = {
597
- code?: string | null;
598
- message?: string | null;
599
- details?: string | null;
600
- data?: {
601
- [key: string]: unknown;
602
- } | null;
603
- validationErrors?: Array<Volo_Abp_Http_RemoteServiceValidationErrorInfo> | null;
604
- };
605
-
606
- export type Volo_Abp_Http_RemoteServiceErrorResponse = {
607
- error?: Volo_Abp_Http_RemoteServiceErrorInfo;
608
- };
609
-
610
- export type Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
611
- message?: string | null;
612
- members?: Array<(string)> | null;
613
- };
614
-
615
- export type Volo_Abp_Localization_LanguageInfo = {
616
- cultureName?: string | null;
617
- uiCultureName?: string | null;
618
- displayName?: string | null;
619
- readonly twoLetterISOLanguageName?: string | null;
620
- };
621
-
622
- export type Volo_Abp_NameValue = {
623
- name?: string | null;
624
- value?: string | null;
625
- };
626
-
627
- export type GetApiAbpApiDefinitionData = {
628
- includeTypes?: boolean;
629
- };
630
-
631
- export type GetApiAbpApiDefinitionResponse = Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
632
-
633
- export type GetApiAbpApplicationConfigurationData = {
634
- includeLocalizationResources?: boolean;
635
- };
636
-
637
- export type GetApiAbpApplicationConfigurationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
638
-
639
- export type GetApiAbpApplicationLocalizationData = {
640
- cultureName: string;
641
- onlyDynamics?: boolean;
642
- };
643
-
644
- export type GetApiAbpApplicationLocalizationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
645
-
646
- export type GetApiFinanceServiceRebateStatementHeadersByIdData = {
647
- id: string;
648
- };
649
-
650
- export type GetApiFinanceServiceRebateStatementHeadersByIdResponse = UniRefund_FinanceService_RebateStatementHeaders_RebateStatementHeaderDetailDto;
651
-
652
- export type GetApiFinanceServiceRebateStatementHeadersData = {
653
- maxResultCount?: number;
654
- skipCount?: number;
655
- sorting?: string;
656
- };
657
-
658
- export type GetApiFinanceServiceRebateStatementHeadersResponse = PagedResultDto_RebateStatementHeaderForListDto;
659
-
660
- export type PostApiFinanceServiceRebateStatementHeadersFormDraftByMerchantIdData = {
661
- merchantId: string;
662
- requestBody: UniRefund_FinanceService_RebateStatementHeaders_RebateStatementHeaderCreateDto;
663
- };
664
-
665
- export type PostApiFinanceServiceRebateStatementHeadersFormDraftByMerchantIdResponse = Array<UniRefund_FinanceService_RebateStatementHeaders_RebateStatementHeaderDraftDto>;
666
-
667
- export type PostApiFinanceServiceRebateStatementHeadersByMerchantIdData = {
668
- merchantId: string;
669
- requestBody: UniRefund_FinanceService_RebateStatementHeaders_RebateStatementHeaderCreateDto;
670
- };
671
-
672
- export type PostApiFinanceServiceRebateStatementHeadersByMerchantIdResponse = Array<UniRefund_FinanceService_RebateStatementHeaders_RebateStatementHeaderDto>;
673
-
674
- export type GetApiFinanceServiceVatStatementHeadersByIdData = {
675
- id: string;
676
- };
677
-
678
- export type GetApiFinanceServiceVatStatementHeadersByIdResponse = UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderDetailDto;
679
-
680
- export type GetApiFinanceServiceVatStatementHeadersByIdBasicInformationData = {
681
- id: string;
682
- };
683
-
684
- export type GetApiFinanceServiceVatStatementHeadersByIdBasicInformationResponse = UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderBasicInformationDto;
685
-
686
- export type GetApiFinanceServiceVatStatementHeadersData = {
687
- maxResultCount?: number;
688
- skipCount?: number;
689
- sorting?: string;
690
- };
691
-
692
- export type GetApiFinanceServiceVatStatementHeadersResponse = PagedResultDto_VATStatementHeaderForListDto;
693
-
694
- export type PostApiFinanceServiceVatStatementHeadersFormDraftByMerchantIdData = {
695
- merchantId: string;
696
- requestBody: UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderCreateDto;
697
- };
698
-
699
- export type PostApiFinanceServiceVatStatementHeadersFormDraftByMerchantIdResponse = Array<UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderDraftDto>;
700
-
701
- export type PostApiFinanceServiceVatStatementHeadersByMerchantIdData = {
702
- merchantId: string;
703
- requestBody: UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderCreateDto;
704
- };
705
-
706
- export type PostApiFinanceServiceVatStatementHeadersByMerchantIdResponse = Array<UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderDto>;
707
-
708
- export type $OpenApiTs = {
709
- '/api/abp/api-definition': {
710
- get: {
711
- req: GetApiAbpApiDefinitionData;
712
- res: {
713
- /**
714
- * Success
715
- */
716
- 200: Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
717
- /**
718
- * Bad Request
719
- */
720
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
721
- /**
722
- * Unauthorized
723
- */
724
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
725
- /**
726
- * Forbidden
727
- */
728
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
729
- /**
730
- * Not Found
731
- */
732
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
733
- /**
734
- * Server Error
735
- */
736
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
737
- /**
738
- * Server Error
739
- */
740
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
741
- };
742
- };
743
- };
744
- '/api/abp/application-configuration': {
745
- get: {
746
- req: GetApiAbpApplicationConfigurationData;
747
- res: {
748
- /**
749
- * Success
750
- */
751
- 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
752
- /**
753
- * Bad Request
754
- */
755
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
756
- /**
757
- * Unauthorized
758
- */
759
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
760
- /**
761
- * Forbidden
762
- */
763
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
764
- /**
765
- * Not Found
766
- */
767
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
768
- /**
769
- * Server Error
770
- */
771
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
772
- /**
773
- * Server Error
774
- */
775
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
776
- };
777
- };
778
- };
779
- '/api/abp/application-localization': {
780
- get: {
781
- req: GetApiAbpApplicationLocalizationData;
782
- res: {
783
- /**
784
- * Success
785
- */
786
- 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
787
- /**
788
- * Bad Request
789
- */
790
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
791
- /**
792
- * Unauthorized
793
- */
794
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
795
- /**
796
- * Forbidden
797
- */
798
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
799
- /**
800
- * Not Found
801
- */
802
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
803
- /**
804
- * Server Error
805
- */
806
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
807
- /**
808
- * Server Error
809
- */
810
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
811
- };
812
- };
813
- };
814
- '/api/finance-service/rebate-statement-headers/{id}': {
815
- get: {
816
- req: GetApiFinanceServiceRebateStatementHeadersByIdData;
817
- res: {
818
- /**
819
- * Success
820
- */
821
- 200: UniRefund_FinanceService_RebateStatementHeaders_RebateStatementHeaderDetailDto;
822
- /**
823
- * Bad Request
824
- */
825
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
826
- /**
827
- * Unauthorized
828
- */
829
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
830
- /**
831
- * Forbidden
832
- */
833
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
834
- /**
835
- * Not Found
836
- */
837
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
838
- /**
839
- * Server Error
840
- */
841
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
842
- /**
843
- * Server Error
844
- */
845
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
846
- };
847
- };
848
- };
849
- '/api/finance-service/rebate-statement-headers': {
850
- get: {
851
- req: GetApiFinanceServiceRebateStatementHeadersData;
852
- res: {
853
- /**
854
- * Success
855
- */
856
- 200: PagedResultDto_RebateStatementHeaderForListDto;
857
- /**
858
- * Bad Request
859
- */
860
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
861
- /**
862
- * Unauthorized
863
- */
864
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
865
- /**
866
- * Forbidden
867
- */
868
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
869
- /**
870
- * Not Found
871
- */
872
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
873
- /**
874
- * Server Error
875
- */
876
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
877
- /**
878
- * Server Error
879
- */
880
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
881
- };
882
- };
883
- };
884
- '/api/finance-service/rebate-statement-headers/form-draft/{merchantId}': {
885
- post: {
886
- req: PostApiFinanceServiceRebateStatementHeadersFormDraftByMerchantIdData;
887
- res: {
888
- /**
889
- * Success
890
- */
891
- 200: Array<UniRefund_FinanceService_RebateStatementHeaders_RebateStatementHeaderDraftDto>;
892
- /**
893
- * Bad Request
894
- */
895
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
896
- /**
897
- * Unauthorized
898
- */
899
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
900
- /**
901
- * Forbidden
902
- */
903
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
904
- /**
905
- * Not Found
906
- */
907
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
908
- /**
909
- * Server Error
910
- */
911
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
912
- /**
913
- * Server Error
914
- */
915
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
916
- };
917
- };
918
- };
919
- '/api/finance-service/rebate-statement-headers/{merchantId}': {
920
- post: {
921
- req: PostApiFinanceServiceRebateStatementHeadersByMerchantIdData;
922
- res: {
923
- /**
924
- * Success
925
- */
926
- 200: Array<UniRefund_FinanceService_RebateStatementHeaders_RebateStatementHeaderDto>;
927
- /**
928
- * Bad Request
929
- */
930
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
931
- /**
932
- * Unauthorized
933
- */
934
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
935
- /**
936
- * Forbidden
937
- */
938
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
939
- /**
940
- * Not Found
941
- */
942
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
943
- /**
944
- * Server Error
945
- */
946
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
947
- /**
948
- * Server Error
949
- */
950
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
951
- };
952
- };
953
- };
954
- '/api/finance-service/vat-statement-headers/{id}': {
955
- get: {
956
- req: GetApiFinanceServiceVatStatementHeadersByIdData;
957
- res: {
958
- /**
959
- * Success
960
- */
961
- 200: UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderDetailDto;
962
- /**
963
- * Bad Request
964
- */
965
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
966
- /**
967
- * Unauthorized
968
- */
969
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
970
- /**
971
- * Forbidden
972
- */
973
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
974
- /**
975
- * Not Found
976
- */
977
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
978
- /**
979
- * Server Error
980
- */
981
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
982
- /**
983
- * Server Error
984
- */
985
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
986
- };
987
- };
988
- };
989
- '/api/finance-service/vat-statement-headers/{id}/basic-information': {
990
- get: {
991
- req: GetApiFinanceServiceVatStatementHeadersByIdBasicInformationData;
992
- res: {
993
- /**
994
- * Success
995
- */
996
- 200: UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderBasicInformationDto;
997
- /**
998
- * Bad Request
999
- */
1000
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1001
- /**
1002
- * Unauthorized
1003
- */
1004
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1005
- /**
1006
- * Forbidden
1007
- */
1008
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1009
- /**
1010
- * Not Found
1011
- */
1012
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1013
- /**
1014
- * Server Error
1015
- */
1016
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1017
- /**
1018
- * Server Error
1019
- */
1020
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1021
- };
1022
- };
1023
- };
1024
- '/api/finance-service/vat-statement-headers': {
1025
- get: {
1026
- req: GetApiFinanceServiceVatStatementHeadersData;
1027
- res: {
1028
- /**
1029
- * Success
1030
- */
1031
- 200: PagedResultDto_VATStatementHeaderForListDto;
1032
- /**
1033
- * Bad Request
1034
- */
1035
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1036
- /**
1037
- * Unauthorized
1038
- */
1039
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1040
- /**
1041
- * Forbidden
1042
- */
1043
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1044
- /**
1045
- * Not Found
1046
- */
1047
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1048
- /**
1049
- * Server Error
1050
- */
1051
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1052
- /**
1053
- * Server Error
1054
- */
1055
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1056
- };
1057
- };
1058
- };
1059
- '/api/finance-service/vat-statement-headers/form-draft/{merchantId}': {
1060
- post: {
1061
- req: PostApiFinanceServiceVatStatementHeadersFormDraftByMerchantIdData;
1062
- res: {
1063
- /**
1064
- * Success
1065
- */
1066
- 200: Array<UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderDraftDto>;
1067
- /**
1068
- * Bad Request
1069
- */
1070
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1071
- /**
1072
- * Unauthorized
1073
- */
1074
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1075
- /**
1076
- * Forbidden
1077
- */
1078
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1079
- /**
1080
- * Not Found
1081
- */
1082
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1083
- /**
1084
- * Server Error
1085
- */
1086
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1087
- /**
1088
- * Server Error
1089
- */
1090
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1091
- };
1092
- };
1093
- };
1094
- '/api/finance-service/vat-statement-headers/{merchantId}': {
1095
- post: {
1096
- req: PostApiFinanceServiceVatStatementHeadersByMerchantIdData;
1097
- res: {
1098
- /**
1099
- * Success
1100
- */
1101
- 200: Array<UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderDto>;
1102
- /**
1103
- * Bad Request
1104
- */
1105
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1106
- /**
1107
- * Unauthorized
1108
- */
1109
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1110
- /**
1111
- * Forbidden
1112
- */
1113
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1114
- /**
1115
- * Not Found
1116
- */
1117
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1118
- /**
1119
- * Server Error
1120
- */
1121
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1122
- /**
1123
- * Server Error
1124
- */
1125
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1126
- };
1127
- };
1128
- };
1
+ // This file is auto-generated by @hey-api/openapi-ts
2
+
3
+ export type PagedResultDto_RebateStatementHeaderForListDto = {
4
+ items?: Array<UniRefund_FinanceService_RebateStatementHeaders_RebateStatementHeaderForListDto> | null;
5
+ totalCount?: number;
6
+ };
7
+
8
+ export type PagedResultDto_VATStatementHeaderForListDto = {
9
+ items?: Array<UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderForListDto> | null;
10
+ totalCount?: number;
11
+ };
12
+
13
+ export type UniRefund_ContractService_Enums_InvoiceChannel = 'ElectronicInvoice' | 'Email' | 'PaperInvoice';
14
+
15
+ export type UniRefund_ContractService_Enums_InvoicingFrequency = 'OneTimePerMonth' | 'TwoTimesPerMonth';
16
+
17
+ export type UniRefund_ContractService_Enums_RebateStatementPeriod = 'None' | 'Monthly' | 'Quarterly' | 'BiAnnually' | 'Annually';
18
+
19
+ export type UniRefund_FinanceService_Enums_PaymentStatus = 'NotPaid' | 'PartlyPaid' | 'Paid' | 'OverPaid';
20
+
21
+ export type UniRefund_FinanceService_Enums_RebateStatementStatus = 'Unfinished' | 'Approved' | 'Processing' | 'Error' | 'Sent' | 'PaymentReminder1' | 'PaymentReminder2' | 'PaymentReminder3' | 'DebtCollection' | 'Cancelled' | 'CreditNote' | 'Paid';
22
+
23
+ export type UniRefund_FinanceService_Enums_VATStatementStatus = 'Sent' | 'PaymentReminder1' | 'PaymentReminder2' | 'PaymentReminder3' | 'DebtCollection' | 'Cancelled' | 'CreditNote' | 'Paid';
24
+
25
+ export type UniRefund_FinanceService_RebateStatementHeaders_RebateStatementHeaderCreateDto = {
26
+ rebateStatementDate: string;
27
+ yearMonthPairs: Array<UniRefund_FinanceService_RebateStatementHeaders_YearMonthPairDto>;
28
+ };
29
+
30
+ export type UniRefund_FinanceService_RebateStatementHeaders_RebateStatementHeaderDetailDto = {
31
+ id: string;
32
+ readonly number: string;
33
+ merchantId: string;
34
+ merchantName: string;
35
+ rebateStatementDate: string;
36
+ total: number;
37
+ status: UniRefund_FinanceService_Enums_RebateStatementStatus;
38
+ period: UniRefund_ContractService_Enums_RebateStatementPeriod;
39
+ readonly customerNumber: string;
40
+ contractHeaderId?: string;
41
+ rebateStatementStoreDetails?: Array<UniRefund_FinanceService_RebateStatementStoreDetails_RebateStatementStoreDetailDto> | null;
42
+ };
43
+
44
+ export type UniRefund_FinanceService_RebateStatementHeaders_RebateStatementHeaderDraftDto = {
45
+ merchantId: string;
46
+ merchantName: string;
47
+ rebateStatementDate: string;
48
+ total: number;
49
+ status: UniRefund_FinanceService_Enums_RebateStatementStatus;
50
+ period: UniRefund_ContractService_Enums_RebateStatementPeriod;
51
+ customerNumber: string;
52
+ contractHeaderId: string;
53
+ rebateStatementStoreDetails?: Array<UniRefund_FinanceService_RebateStatementStoreDetails_RebateStatementStoreDetailDraftDto> | null;
54
+ };
55
+
56
+ export type UniRefund_FinanceService_RebateStatementHeaders_RebateStatementHeaderDto = {
57
+ merchantId: string;
58
+ merchantName: string;
59
+ rebateStatementDate: string;
60
+ total: number;
61
+ status: UniRefund_FinanceService_Enums_RebateStatementStatus;
62
+ period: UniRefund_ContractService_Enums_RebateStatementPeriod;
63
+ customerNumber: string;
64
+ contractHeaderId: string;
65
+ rebateStatementStoreDetails?: Array<UniRefund_FinanceService_RebateStatementStoreDetails_RebateStatementStoreDetailDraftDto> | null;
66
+ id: string;
67
+ number: string;
68
+ };
69
+
70
+ export type UniRefund_FinanceService_RebateStatementHeaders_RebateStatementHeaderForListDto = {
71
+ id: string;
72
+ merchantId: string;
73
+ merchantName?: string | null;
74
+ rebateStatementDate: string;
75
+ number: string;
76
+ total: number;
77
+ status: UniRefund_FinanceService_Enums_RebateStatementStatus;
78
+ period: UniRefund_ContractService_Enums_RebateStatementPeriod;
79
+ };
80
+
81
+ export type UniRefund_FinanceService_RebateStatementHeaders_YearMonthPairDto = {
82
+ year: number;
83
+ month: number;
84
+ };
85
+
86
+ export type UniRefund_FinanceService_RebateStatementStoreDetails_RebateStatementStoreDetailDraftDto = {
87
+ merchantId: string;
88
+ merchantName: string;
89
+ tagCount: number;
90
+ grandTotalAmount: number;
91
+ vatAmount: number;
92
+ rebateAmount: number;
93
+ referenceDateBegin: string;
94
+ vatStatementHeaderId: string;
95
+ invoiceNumber: string;
96
+ };
97
+
98
+ export type UniRefund_FinanceService_RebateStatementStoreDetails_RebateStatementStoreDetailDto = {
99
+ merchantId: string;
100
+ merchantName: string;
101
+ tagCount: number;
102
+ grandTotalAmount: number;
103
+ vatAmount: number;
104
+ rebateAmount: number;
105
+ referenceDateBegin: string;
106
+ vatStatementHeaderId: string;
107
+ invoiceNumber: string;
108
+ id: string;
109
+ };
110
+
111
+ export type UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderBasicInformationDto = {
112
+ id: string;
113
+ vatStatementDate: string;
114
+ invoiceNumber: string;
115
+ status: UniRefund_FinanceService_Enums_VATStatementStatus;
116
+ };
117
+
118
+ export type UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderCreateDto = {
119
+ readonly extraProperties?: {
120
+ [key: string]: unknown;
121
+ } | null;
122
+ year: number;
123
+ month: number;
124
+ vatStatementDate: string;
125
+ };
126
+
127
+ export type UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderDetailDto = {
128
+ merchantId: string;
129
+ tagCount: number;
130
+ merchantName: string;
131
+ vatStatementDate: string;
132
+ dueDate: string;
133
+ total: number;
134
+ unpaid: number;
135
+ status: UniRefund_FinanceService_Enums_VATStatementStatus;
136
+ billingPeriod: UniRefund_ContractService_Enums_InvoicingFrequency;
137
+ termOfPayment: number;
138
+ paymentStatus: UniRefund_FinanceService_Enums_PaymentStatus;
139
+ isFactoring?: boolean;
140
+ referenceDateBegin: string;
141
+ referenceDateEnd: string;
142
+ deliveryMethod: UniRefund_ContractService_Enums_InvoiceChannel;
143
+ customerNumber?: string | null;
144
+ referenceNumber?: string | null;
145
+ yourReference?: string | null;
146
+ contractHeaderId: string;
147
+ rebateStatementHeaderId?: string | null;
148
+ vatStatementTagDetails?: Array<UniRefund_FinanceService_VATStatementTagDetails_VATStatementTagDetailDto> | null;
149
+ id: string;
150
+ invoiceNumber: string;
151
+ };
152
+
153
+ export type UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderDraftDto = {
154
+ merchantId: string;
155
+ tagCount: number;
156
+ merchantName: string;
157
+ vatStatementDate: string;
158
+ dueDate: string;
159
+ total: number;
160
+ unpaid: number;
161
+ status: UniRefund_FinanceService_Enums_VATStatementStatus;
162
+ billingPeriod: UniRefund_ContractService_Enums_InvoicingFrequency;
163
+ termOfPayment: number;
164
+ paymentStatus: UniRefund_FinanceService_Enums_PaymentStatus;
165
+ isFactoring?: boolean;
166
+ referenceDateBegin: string;
167
+ referenceDateEnd: string;
168
+ deliveryMethod: UniRefund_ContractService_Enums_InvoiceChannel;
169
+ customerNumber?: string | null;
170
+ referenceNumber?: string | null;
171
+ yourReference?: string | null;
172
+ contractHeaderId: string;
173
+ rebateStatementHeaderId?: string | null;
174
+ vatStatementTagDetails?: Array<UniRefund_FinanceService_VATStatementTagDetails_VATStatementTagDetailDraftDto> | null;
175
+ };
176
+
177
+ export type UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderDto = {
178
+ merchantId: string;
179
+ tagCount: number;
180
+ merchantName: string;
181
+ vatStatementDate: string;
182
+ dueDate: string;
183
+ total: number;
184
+ unpaid: number;
185
+ status: UniRefund_FinanceService_Enums_VATStatementStatus;
186
+ billingPeriod: UniRefund_ContractService_Enums_InvoicingFrequency;
187
+ termOfPayment: number;
188
+ paymentStatus: UniRefund_FinanceService_Enums_PaymentStatus;
189
+ isFactoring?: boolean;
190
+ referenceDateBegin: string;
191
+ referenceDateEnd: string;
192
+ deliveryMethod: UniRefund_ContractService_Enums_InvoiceChannel;
193
+ customerNumber?: string | null;
194
+ referenceNumber?: string | null;
195
+ yourReference?: string | null;
196
+ contractHeaderId: string;
197
+ rebateStatementHeaderId?: string | null;
198
+ vatStatementTagDetails?: Array<UniRefund_FinanceService_VATStatementTagDetails_VATStatementTagDetailDto> | null;
199
+ id: string;
200
+ invoiceNumber: string;
201
+ };
202
+
203
+ export type UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderForListDto = {
204
+ id: string;
205
+ invoiceNumber: string;
206
+ merchantId: string;
207
+ tagCount: number;
208
+ merchantName: string;
209
+ vatStatementDate: string;
210
+ dueDate: string;
211
+ total: number;
212
+ unpaid: number;
213
+ status: UniRefund_FinanceService_Enums_VATStatementStatus;
214
+ paymentStatus: UniRefund_FinanceService_Enums_PaymentStatus;
215
+ };
216
+
217
+ export type UniRefund_FinanceService_VATStatementTagDetails_VATStatementTagDetailDraftDto = {
218
+ tagId: string;
219
+ merchantId: string;
220
+ merchantName: string;
221
+ tagNumber: string;
222
+ refundDate: string;
223
+ grandTotal: number;
224
+ taxAmount: number;
225
+ refundAmount: number;
226
+ correctedAmount?: number | null;
227
+ currency: string;
228
+ };
229
+
230
+ export type UniRefund_FinanceService_VATStatementTagDetails_VATStatementTagDetailDto = {
231
+ tagId: string;
232
+ merchantId: string;
233
+ merchantName: string;
234
+ tagNumber: string;
235
+ refundDate: string;
236
+ grandTotal: number;
237
+ taxAmount: number;
238
+ refundAmount: number;
239
+ correctedAmount?: number | null;
240
+ currency: string;
241
+ id: string;
242
+ };
243
+
244
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
245
+ grantedPolicies?: {
246
+ [key: string]: (boolean);
247
+ } | null;
248
+ };
249
+
250
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
251
+ localization?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto;
252
+ auth?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto;
253
+ setting?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto;
254
+ currentUser?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto;
255
+ features?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto;
256
+ globalFeatures?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto;
257
+ multiTenancy?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto;
258
+ currentTenant?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto;
259
+ timing?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto;
260
+ clock?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto;
261
+ objectExtensions?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto;
262
+ extraProperties?: {
263
+ [key: string]: unknown;
264
+ } | null;
265
+ };
266
+
267
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto = {
268
+ values?: {
269
+ [key: string]: (string | null);
270
+ } | null;
271
+ };
272
+
273
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto = {
274
+ enabledFeatures?: Array<(string)> | null;
275
+ };
276
+
277
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto = {
278
+ values?: {
279
+ [key: string]: {
280
+ [key: string]: (string);
281
+ };
282
+ } | null;
283
+ resources?: {
284
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
285
+ } | null;
286
+ languages?: Array<Volo_Abp_Localization_LanguageInfo> | null;
287
+ currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
288
+ defaultResourceName?: string | null;
289
+ languagesMap?: {
290
+ [key: string]: Array<Volo_Abp_NameValue>;
291
+ } | null;
292
+ languageFilesMap?: {
293
+ [key: string]: Array<Volo_Abp_NameValue>;
294
+ } | null;
295
+ };
296
+
297
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
298
+ resources?: {
299
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
300
+ } | null;
301
+ currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
302
+ };
303
+
304
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto = {
305
+ texts?: {
306
+ [key: string]: (string);
307
+ } | null;
308
+ baseResources?: Array<(string)> | null;
309
+ };
310
+
311
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto = {
312
+ values?: {
313
+ [key: string]: (string | null);
314
+ } | null;
315
+ };
316
+
317
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto = {
318
+ kind?: string | null;
319
+ };
320
+
321
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto = {
322
+ displayName?: string | null;
323
+ englishName?: string | null;
324
+ threeLetterIsoLanguageName?: string | null;
325
+ twoLetterIsoLanguageName?: string | null;
326
+ isRightToLeft?: boolean;
327
+ cultureName?: string | null;
328
+ name?: string | null;
329
+ nativeName?: string | null;
330
+ dateTimeFormat?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto;
331
+ };
332
+
333
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
334
+ isAuthenticated?: boolean;
335
+ id?: string | null;
336
+ tenantId?: string | null;
337
+ impersonatorUserId?: string | null;
338
+ impersonatorTenantId?: string | null;
339
+ impersonatorUserName?: string | null;
340
+ impersonatorTenantName?: string | null;
341
+ userName?: string | null;
342
+ name?: string | null;
343
+ surName?: string | null;
344
+ email?: string | null;
345
+ emailVerified?: boolean;
346
+ phoneNumber?: string | null;
347
+ phoneNumberVerified?: boolean;
348
+ roles?: Array<(string)> | null;
349
+ sessionId?: string | null;
350
+ };
351
+
352
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto = {
353
+ calendarAlgorithmType?: string | null;
354
+ dateTimeFormatLong?: string | null;
355
+ shortDatePattern?: string | null;
356
+ fullDateTimePattern?: string | null;
357
+ dateSeparator?: string | null;
358
+ shortTimePattern?: string | null;
359
+ longTimePattern?: string | null;
360
+ };
361
+
362
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone = {
363
+ timeZoneName?: string | null;
364
+ };
365
+
366
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
367
+ properties?: {
368
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto;
369
+ } | null;
370
+ configuration?: {
371
+ [key: string]: unknown;
372
+ } | null;
373
+ };
374
+
375
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
376
+ fields?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto> | null;
377
+ localizationResource?: string | null;
378
+ };
379
+
380
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto = {
381
+ name?: string | null;
382
+ value?: unknown;
383
+ };
384
+
385
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto = {
386
+ isAvailable?: boolean;
387
+ };
388
+
389
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
390
+ onGet?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto;
391
+ onCreate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto;
392
+ onUpdate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto;
393
+ };
394
+
395
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
396
+ isAvailable?: boolean;
397
+ };
398
+
399
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto = {
400
+ isAvailable?: boolean;
401
+ };
402
+
403
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto = {
404
+ typeSimple?: string | null;
405
+ config?: {
406
+ [key: string]: unknown;
407
+ } | null;
408
+ };
409
+
410
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
411
+ type?: string | null;
412
+ typeSimple?: string | null;
413
+ displayName?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto;
414
+ api?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto;
415
+ ui?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto;
416
+ attributes?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto> | null;
417
+ configuration?: {
418
+ [key: string]: unknown;
419
+ } | null;
420
+ defaultValue?: unknown;
421
+ };
422
+
423
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
424
+ onTable?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto;
425
+ onCreateForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
426
+ onEditForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
427
+ lookup?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto;
428
+ };
429
+
430
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
431
+ isVisible?: boolean;
432
+ };
433
+
434
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto = {
435
+ url?: string | null;
436
+ resultListPropertyName?: string | null;
437
+ displayPropertyName?: string | null;
438
+ valuePropertyName?: string | null;
439
+ filterParamName?: string | null;
440
+ };
441
+
442
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto = {
443
+ isVisible?: boolean;
444
+ };
445
+
446
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto = {
447
+ name?: string | null;
448
+ resource?: string | null;
449
+ };
450
+
451
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto = {
452
+ entities?: {
453
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto;
454
+ } | null;
455
+ configuration?: {
456
+ [key: string]: unknown;
457
+ } | null;
458
+ };
459
+
460
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto = {
461
+ modules?: {
462
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto;
463
+ } | null;
464
+ enums?: {
465
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto;
466
+ } | null;
467
+ };
468
+
469
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
470
+ iana?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone;
471
+ windows?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone;
472
+ };
473
+
474
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
475
+ timeZone?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone;
476
+ };
477
+
478
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone = {
479
+ timeZoneId?: string | null;
480
+ };
481
+
482
+ export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto = {
483
+ id?: string | null;
484
+ name?: string | null;
485
+ isAvailable?: boolean;
486
+ };
487
+
488
+ export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto = {
489
+ isEnabled?: boolean;
490
+ };
491
+
492
+ export type Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
493
+ uniqueName?: string | null;
494
+ name?: string | null;
495
+ httpMethod?: string | null;
496
+ url?: string | null;
497
+ supportedVersions?: Array<(string)> | null;
498
+ parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
499
+ parameters?: Array<Volo_Abp_Http_Modeling_ParameterApiDescriptionModel> | null;
500
+ returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
501
+ allowAnonymous?: boolean | null;
502
+ implementFrom?: string | null;
503
+ };
504
+
505
+ export type Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
506
+ modules?: {
507
+ [key: string]: Volo_Abp_Http_Modeling_ModuleApiDescriptionModel;
508
+ } | null;
509
+ types?: {
510
+ [key: string]: Volo_Abp_Http_Modeling_TypeApiDescriptionModel;
511
+ } | null;
512
+ };
513
+
514
+ export type Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
515
+ controllerName?: string | null;
516
+ controllerGroupName?: string | null;
517
+ isRemoteService?: boolean;
518
+ isIntegrationService?: boolean;
519
+ apiVersion?: string | null;
520
+ type?: string | null;
521
+ interfaces?: Array<Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel> | null;
522
+ actions?: {
523
+ [key: string]: Volo_Abp_Http_Modeling_ActionApiDescriptionModel;
524
+ } | null;
525
+ };
526
+
527
+ export type Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
528
+ type?: string | null;
529
+ name?: string | null;
530
+ methods?: Array<Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel> | null;
531
+ };
532
+
533
+ export type Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
534
+ name?: string | null;
535
+ parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
536
+ returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
537
+ };
538
+
539
+ export type Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel = {
540
+ name?: string | null;
541
+ typeAsString?: string | null;
542
+ type?: string | null;
543
+ typeSimple?: string | null;
544
+ isOptional?: boolean;
545
+ defaultValue?: unknown;
546
+ };
547
+
548
+ export type Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
549
+ rootPath?: string | null;
550
+ remoteServiceName?: string | null;
551
+ controllers?: {
552
+ [key: string]: Volo_Abp_Http_Modeling_ControllerApiDescriptionModel;
553
+ } | null;
554
+ };
555
+
556
+ export type Volo_Abp_Http_Modeling_ParameterApiDescriptionModel = {
557
+ nameOnMethod?: string | null;
558
+ name?: string | null;
559
+ jsonName?: string | null;
560
+ type?: string | null;
561
+ typeSimple?: string | null;
562
+ isOptional?: boolean;
563
+ defaultValue?: unknown;
564
+ constraintTypes?: Array<(string)> | null;
565
+ bindingSourceId?: string | null;
566
+ descriptorName?: string | null;
567
+ };
568
+
569
+ export type Volo_Abp_Http_Modeling_PropertyApiDescriptionModel = {
570
+ name?: string | null;
571
+ jsonName?: string | null;
572
+ type?: string | null;
573
+ typeSimple?: string | null;
574
+ isRequired?: boolean;
575
+ minLength?: number | null;
576
+ maxLength?: number | null;
577
+ minimum?: string | null;
578
+ maximum?: string | null;
579
+ regex?: string | null;
580
+ };
581
+
582
+ export type Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel = {
583
+ type?: string | null;
584
+ typeSimple?: string | null;
585
+ };
586
+
587
+ export type Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
588
+ baseType?: string | null;
589
+ isEnum?: boolean;
590
+ enumNames?: Array<(string)> | null;
591
+ enumValues?: Array<unknown> | null;
592
+ genericArguments?: Array<(string)> | null;
593
+ properties?: Array<Volo_Abp_Http_Modeling_PropertyApiDescriptionModel> | null;
594
+ };
595
+
596
+ export type Volo_Abp_Http_RemoteServiceErrorInfo = {
597
+ code?: string | null;
598
+ message?: string | null;
599
+ details?: string | null;
600
+ data?: {
601
+ [key: string]: unknown;
602
+ } | null;
603
+ validationErrors?: Array<Volo_Abp_Http_RemoteServiceValidationErrorInfo> | null;
604
+ };
605
+
606
+ export type Volo_Abp_Http_RemoteServiceErrorResponse = {
607
+ error?: Volo_Abp_Http_RemoteServiceErrorInfo;
608
+ };
609
+
610
+ export type Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
611
+ message?: string | null;
612
+ members?: Array<(string)> | null;
613
+ };
614
+
615
+ export type Volo_Abp_Localization_LanguageInfo = {
616
+ cultureName?: string | null;
617
+ uiCultureName?: string | null;
618
+ displayName?: string | null;
619
+ readonly twoLetterISOLanguageName?: string | null;
620
+ };
621
+
622
+ export type Volo_Abp_NameValue = {
623
+ name?: string | null;
624
+ value?: string | null;
625
+ };
626
+
627
+ export type GetApiAbpApiDefinitionData = {
628
+ includeTypes?: boolean;
629
+ };
630
+
631
+ export type GetApiAbpApiDefinitionResponse = Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
632
+
633
+ export type GetApiAbpApplicationConfigurationData = {
634
+ includeLocalizationResources?: boolean;
635
+ };
636
+
637
+ export type GetApiAbpApplicationConfigurationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
638
+
639
+ export type GetApiAbpApplicationLocalizationData = {
640
+ cultureName: string;
641
+ onlyDynamics?: boolean;
642
+ };
643
+
644
+ export type GetApiAbpApplicationLocalizationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
645
+
646
+ export type GetApiFinanceServiceRebateStatementHeadersByIdData = {
647
+ id: string;
648
+ };
649
+
650
+ export type GetApiFinanceServiceRebateStatementHeadersByIdResponse = UniRefund_FinanceService_RebateStatementHeaders_RebateStatementHeaderDetailDto;
651
+
652
+ export type GetApiFinanceServiceRebateStatementHeadersData = {
653
+ maxResultCount?: number;
654
+ skipCount?: number;
655
+ sorting?: string;
656
+ };
657
+
658
+ export type GetApiFinanceServiceRebateStatementHeadersResponse = PagedResultDto_RebateStatementHeaderForListDto;
659
+
660
+ export type PostApiFinanceServiceRebateStatementHeadersFormDraftByMerchantIdData = {
661
+ merchantId: string;
662
+ requestBody: UniRefund_FinanceService_RebateStatementHeaders_RebateStatementHeaderCreateDto;
663
+ };
664
+
665
+ export type PostApiFinanceServiceRebateStatementHeadersFormDraftByMerchantIdResponse = Array<UniRefund_FinanceService_RebateStatementHeaders_RebateStatementHeaderDraftDto>;
666
+
667
+ export type PostApiFinanceServiceRebateStatementHeadersByMerchantIdData = {
668
+ merchantId: string;
669
+ requestBody: UniRefund_FinanceService_RebateStatementHeaders_RebateStatementHeaderCreateDto;
670
+ };
671
+
672
+ export type PostApiFinanceServiceRebateStatementHeadersByMerchantIdResponse = Array<UniRefund_FinanceService_RebateStatementHeaders_RebateStatementHeaderDto>;
673
+
674
+ export type GetApiFinanceServiceVatStatementHeadersByIdData = {
675
+ id: string;
676
+ };
677
+
678
+ export type GetApiFinanceServiceVatStatementHeadersByIdResponse = UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderDetailDto;
679
+
680
+ export type GetApiFinanceServiceVatStatementHeadersByIdBasicInformationData = {
681
+ id: string;
682
+ };
683
+
684
+ export type GetApiFinanceServiceVatStatementHeadersByIdBasicInformationResponse = UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderBasicInformationDto;
685
+
686
+ export type GetApiFinanceServiceVatStatementHeadersData = {
687
+ maxResultCount?: number;
688
+ skipCount?: number;
689
+ sorting?: string;
690
+ };
691
+
692
+ export type GetApiFinanceServiceVatStatementHeadersResponse = PagedResultDto_VATStatementHeaderForListDto;
693
+
694
+ export type PostApiFinanceServiceVatStatementHeadersFormDraftByMerchantIdData = {
695
+ merchantId: string;
696
+ requestBody: UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderCreateDto;
697
+ };
698
+
699
+ export type PostApiFinanceServiceVatStatementHeadersFormDraftByMerchantIdResponse = Array<UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderDraftDto>;
700
+
701
+ export type PostApiFinanceServiceVatStatementHeadersByMerchantIdData = {
702
+ merchantId: string;
703
+ requestBody: UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderCreateDto;
704
+ };
705
+
706
+ export type PostApiFinanceServiceVatStatementHeadersByMerchantIdResponse = Array<UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderDto>;
707
+
708
+ export type $OpenApiTs = {
709
+ '/api/abp/api-definition': {
710
+ get: {
711
+ req: GetApiAbpApiDefinitionData;
712
+ res: {
713
+ /**
714
+ * Success
715
+ */
716
+ 200: Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
717
+ /**
718
+ * Bad Request
719
+ */
720
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
721
+ /**
722
+ * Unauthorized
723
+ */
724
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
725
+ /**
726
+ * Forbidden
727
+ */
728
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
729
+ /**
730
+ * Not Found
731
+ */
732
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
733
+ /**
734
+ * Server Error
735
+ */
736
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
737
+ /**
738
+ * Server Error
739
+ */
740
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
741
+ };
742
+ };
743
+ };
744
+ '/api/abp/application-configuration': {
745
+ get: {
746
+ req: GetApiAbpApplicationConfigurationData;
747
+ res: {
748
+ /**
749
+ * Success
750
+ */
751
+ 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
752
+ /**
753
+ * Bad Request
754
+ */
755
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
756
+ /**
757
+ * Unauthorized
758
+ */
759
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
760
+ /**
761
+ * Forbidden
762
+ */
763
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
764
+ /**
765
+ * Not Found
766
+ */
767
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
768
+ /**
769
+ * Server Error
770
+ */
771
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
772
+ /**
773
+ * Server Error
774
+ */
775
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
776
+ };
777
+ };
778
+ };
779
+ '/api/abp/application-localization': {
780
+ get: {
781
+ req: GetApiAbpApplicationLocalizationData;
782
+ res: {
783
+ /**
784
+ * Success
785
+ */
786
+ 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
787
+ /**
788
+ * Bad Request
789
+ */
790
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
791
+ /**
792
+ * Unauthorized
793
+ */
794
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
795
+ /**
796
+ * Forbidden
797
+ */
798
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
799
+ /**
800
+ * Not Found
801
+ */
802
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
803
+ /**
804
+ * Server Error
805
+ */
806
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
807
+ /**
808
+ * Server Error
809
+ */
810
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
811
+ };
812
+ };
813
+ };
814
+ '/api/finance-service/rebate-statement-headers/{id}': {
815
+ get: {
816
+ req: GetApiFinanceServiceRebateStatementHeadersByIdData;
817
+ res: {
818
+ /**
819
+ * Success
820
+ */
821
+ 200: UniRefund_FinanceService_RebateStatementHeaders_RebateStatementHeaderDetailDto;
822
+ /**
823
+ * Bad Request
824
+ */
825
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
826
+ /**
827
+ * Unauthorized
828
+ */
829
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
830
+ /**
831
+ * Forbidden
832
+ */
833
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
834
+ /**
835
+ * Not Found
836
+ */
837
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
838
+ /**
839
+ * Server Error
840
+ */
841
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
842
+ /**
843
+ * Server Error
844
+ */
845
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
846
+ };
847
+ };
848
+ };
849
+ '/api/finance-service/rebate-statement-headers': {
850
+ get: {
851
+ req: GetApiFinanceServiceRebateStatementHeadersData;
852
+ res: {
853
+ /**
854
+ * Success
855
+ */
856
+ 200: PagedResultDto_RebateStatementHeaderForListDto;
857
+ /**
858
+ * Bad Request
859
+ */
860
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
861
+ /**
862
+ * Unauthorized
863
+ */
864
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
865
+ /**
866
+ * Forbidden
867
+ */
868
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
869
+ /**
870
+ * Not Found
871
+ */
872
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
873
+ /**
874
+ * Server Error
875
+ */
876
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
877
+ /**
878
+ * Server Error
879
+ */
880
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
881
+ };
882
+ };
883
+ };
884
+ '/api/finance-service/rebate-statement-headers/form-draft/{merchantId}': {
885
+ post: {
886
+ req: PostApiFinanceServiceRebateStatementHeadersFormDraftByMerchantIdData;
887
+ res: {
888
+ /**
889
+ * Success
890
+ */
891
+ 200: Array<UniRefund_FinanceService_RebateStatementHeaders_RebateStatementHeaderDraftDto>;
892
+ /**
893
+ * Bad Request
894
+ */
895
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
896
+ /**
897
+ * Unauthorized
898
+ */
899
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
900
+ /**
901
+ * Forbidden
902
+ */
903
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
904
+ /**
905
+ * Not Found
906
+ */
907
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
908
+ /**
909
+ * Server Error
910
+ */
911
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
912
+ /**
913
+ * Server Error
914
+ */
915
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
916
+ };
917
+ };
918
+ };
919
+ '/api/finance-service/rebate-statement-headers/{merchantId}': {
920
+ post: {
921
+ req: PostApiFinanceServiceRebateStatementHeadersByMerchantIdData;
922
+ res: {
923
+ /**
924
+ * Success
925
+ */
926
+ 200: Array<UniRefund_FinanceService_RebateStatementHeaders_RebateStatementHeaderDto>;
927
+ /**
928
+ * Bad Request
929
+ */
930
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
931
+ /**
932
+ * Unauthorized
933
+ */
934
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
935
+ /**
936
+ * Forbidden
937
+ */
938
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
939
+ /**
940
+ * Not Found
941
+ */
942
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
943
+ /**
944
+ * Server Error
945
+ */
946
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
947
+ /**
948
+ * Server Error
949
+ */
950
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
951
+ };
952
+ };
953
+ };
954
+ '/api/finance-service/vat-statement-headers/{id}': {
955
+ get: {
956
+ req: GetApiFinanceServiceVatStatementHeadersByIdData;
957
+ res: {
958
+ /**
959
+ * Success
960
+ */
961
+ 200: UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderDetailDto;
962
+ /**
963
+ * Bad Request
964
+ */
965
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
966
+ /**
967
+ * Unauthorized
968
+ */
969
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
970
+ /**
971
+ * Forbidden
972
+ */
973
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
974
+ /**
975
+ * Not Found
976
+ */
977
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
978
+ /**
979
+ * Server Error
980
+ */
981
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
982
+ /**
983
+ * Server Error
984
+ */
985
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
986
+ };
987
+ };
988
+ };
989
+ '/api/finance-service/vat-statement-headers/{id}/basic-information': {
990
+ get: {
991
+ req: GetApiFinanceServiceVatStatementHeadersByIdBasicInformationData;
992
+ res: {
993
+ /**
994
+ * Success
995
+ */
996
+ 200: UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderBasicInformationDto;
997
+ /**
998
+ * Bad Request
999
+ */
1000
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1001
+ /**
1002
+ * Unauthorized
1003
+ */
1004
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1005
+ /**
1006
+ * Forbidden
1007
+ */
1008
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1009
+ /**
1010
+ * Not Found
1011
+ */
1012
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1013
+ /**
1014
+ * Server Error
1015
+ */
1016
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1017
+ /**
1018
+ * Server Error
1019
+ */
1020
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1021
+ };
1022
+ };
1023
+ };
1024
+ '/api/finance-service/vat-statement-headers': {
1025
+ get: {
1026
+ req: GetApiFinanceServiceVatStatementHeadersData;
1027
+ res: {
1028
+ /**
1029
+ * Success
1030
+ */
1031
+ 200: PagedResultDto_VATStatementHeaderForListDto;
1032
+ /**
1033
+ * Bad Request
1034
+ */
1035
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1036
+ /**
1037
+ * Unauthorized
1038
+ */
1039
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1040
+ /**
1041
+ * Forbidden
1042
+ */
1043
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1044
+ /**
1045
+ * Not Found
1046
+ */
1047
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1048
+ /**
1049
+ * Server Error
1050
+ */
1051
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1052
+ /**
1053
+ * Server Error
1054
+ */
1055
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1056
+ };
1057
+ };
1058
+ };
1059
+ '/api/finance-service/vat-statement-headers/form-draft/{merchantId}': {
1060
+ post: {
1061
+ req: PostApiFinanceServiceVatStatementHeadersFormDraftByMerchantIdData;
1062
+ res: {
1063
+ /**
1064
+ * Success
1065
+ */
1066
+ 200: Array<UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderDraftDto>;
1067
+ /**
1068
+ * Bad Request
1069
+ */
1070
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1071
+ /**
1072
+ * Unauthorized
1073
+ */
1074
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1075
+ /**
1076
+ * Forbidden
1077
+ */
1078
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1079
+ /**
1080
+ * Not Found
1081
+ */
1082
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1083
+ /**
1084
+ * Server Error
1085
+ */
1086
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1087
+ /**
1088
+ * Server Error
1089
+ */
1090
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1091
+ };
1092
+ };
1093
+ };
1094
+ '/api/finance-service/vat-statement-headers/{merchantId}': {
1095
+ post: {
1096
+ req: PostApiFinanceServiceVatStatementHeadersByMerchantIdData;
1097
+ res: {
1098
+ /**
1099
+ * Success
1100
+ */
1101
+ 200: Array<UniRefund_FinanceService_VATStatementHeaders_VATStatementHeaderDto>;
1102
+ /**
1103
+ * Bad Request
1104
+ */
1105
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1106
+ /**
1107
+ * Unauthorized
1108
+ */
1109
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1110
+ /**
1111
+ * Forbidden
1112
+ */
1113
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1114
+ /**
1115
+ * Not Found
1116
+ */
1117
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1118
+ /**
1119
+ * Server Error
1120
+ */
1121
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1122
+ /**
1123
+ * Server Error
1124
+ */
1125
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1126
+ };
1127
+ };
1128
+ };
1129
1129
  };