@ayasofyazilim/saas 0.0.101 → 0.0.102

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (576) hide show
  1. package/.github/workflows/release.yaml +45 -45
  2. package/.github/workflows/update.yaml +93 -71
  3. package/.github/workflows/update_release.yaml +33 -33
  4. package/API_LIST.json +67 -0
  5. package/AccountService/AccountServiceClient.ts +68 -68
  6. package/AccountService/core/ApiError.ts +20 -20
  7. package/AccountService/core/ApiRequestOptions.ts +12 -12
  8. package/AccountService/core/ApiResult.ts +6 -6
  9. package/AccountService/core/BaseHttpRequest.ts +9 -9
  10. package/AccountService/core/CancelablePromise.ts +125 -125
  11. package/AccountService/core/FetchHttpRequest.ts +21 -21
  12. package/AccountService/core/OpenAPI.ts +55 -55
  13. package/AccountService/core/request.ts +340 -340
  14. package/AccountService/index.ts +8 -8
  15. package/AccountService/models/Volo_Abp_Account_AccountExternalProviderSettingsDto.ts +9 -9
  16. package/AccountService/models/Volo_Abp_Account_AccountRecaptchaSettingsDto.ts +14 -14
  17. package/AccountService/models/Volo_Abp_Account_AccountSettingsDto.ts +9 -9
  18. package/AccountService/models/Volo_Abp_Account_AccountTwoFactorSettingsDto.ts +11 -11
  19. package/AccountService/models/Volo_Abp_Account_AuthenticatorInfoDto.ts +9 -9
  20. package/AccountService/models/Volo_Abp_Account_ChangePasswordInput.ts +9 -9
  21. package/AccountService/models/Volo_Abp_Account_ConfirmEmailInput.ts +9 -9
  22. package/AccountService/models/Volo_Abp_Account_ConfirmPhoneNumberInput.ts +9 -9
  23. package/AccountService/models/Volo_Abp_Account_DelegateNewUserInput.ts +10 -10
  24. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderDto.ts +9 -9
  25. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemDto.ts +11 -11
  26. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto.ts +13 -13
  27. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettings.ts +12 -12
  28. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty.ts +9 -9
  29. package/AccountService/models/Volo_Abp_Account_IdentityUserConfirmationStateDto.ts +9 -9
  30. package/AccountService/models/Volo_Abp_Account_IsLinkedInput.ts +9 -9
  31. package/AccountService/models/Volo_Abp_Account_LinkUserDto.ts +12 -12
  32. package/AccountService/models/Volo_Abp_Account_LinkUserInput.ts +10 -10
  33. package/AccountService/models/Volo_Abp_Account_ProfileDto.ts +20 -20
  34. package/AccountService/models/Volo_Abp_Account_ProfilePictureSourceDto.ts +11 -11
  35. package/AccountService/models/Volo_Abp_Account_ProfilePictureType.ts +9 -9
  36. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult.ts +10 -10
  37. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LinkUserLoginInfo.ts +9 -9
  38. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LoginResultType.ts +12 -12
  39. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_UserLoginInfo.ts +11 -11
  40. package/AccountService/models/Volo_Abp_Account_RegisterDto.ts +15 -15
  41. package/AccountService/models/Volo_Abp_Account_ResetPasswordDto.ts +10 -10
  42. package/AccountService/models/Volo_Abp_Account_SendEmailConfirmationTokenDto.ts +11 -11
  43. package/AccountService/models/Volo_Abp_Account_SendPasswordResetCodeDto.ts +11 -11
  44. package/AccountService/models/Volo_Abp_Account_SendPhoneNumberConfirmationTokenDto.ts +9 -9
  45. package/AccountService/models/Volo_Abp_Account_SendTwoFactorCodeInput.ts +10 -10
  46. package/AccountService/models/Volo_Abp_Account_UnLinkUserInput.ts +9 -9
  47. package/AccountService/models/Volo_Abp_Account_UpdateExternalProviderDto.ts +12 -12
  48. package/AccountService/models/Volo_Abp_Account_UpdateProfileDto.ts +15 -15
  49. package/AccountService/models/Volo_Abp_Account_UserDelegationDto.ts +11 -11
  50. package/AccountService/models/Volo_Abp_Account_UserLookupDto.ts +9 -9
  51. package/AccountService/models/Volo_Abp_Account_VerifyAuthenticatorCodeDto.ts +8 -8
  52. package/AccountService/models/Volo_Abp_Account_VerifyAuthenticatorCodeInput.ts +8 -8
  53. package/AccountService/models/Volo_Abp_Account_VerifyEmailConfirmationTokenInput.ts +9 -9
  54. package/AccountService/models/Volo_Abp_Account_VerifyLinkLoginTokenInput.ts +10 -10
  55. package/AccountService/models/Volo_Abp_Account_VerifyLinkTokenInput.ts +10 -10
  56. package/AccountService/models/Volo_Abp_Account_VerifyPasswordResetTokenInput.ts +9 -9
  57. package/AccountService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -9
  58. package/AccountService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -10
  59. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -8
  60. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -30
  61. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -8
  62. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -8
  63. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -18
  64. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -9
  65. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -9
  66. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -8
  67. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -8
  68. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -17
  69. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -22
  70. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -14
  71. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -8
  72. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -10
  73. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -10
  74. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -9
  75. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -8
  76. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -13
  77. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -8
  78. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -8
  79. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -9
  80. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -19
  81. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -14
  82. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -8
  83. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -12
  84. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -8
  85. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -9
  86. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -10
  87. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -11
  88. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -11
  89. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -9
  90. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -8
  91. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -10
  92. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto.ts +11 -11
  93. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -8
  94. package/AccountService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -20
  95. package/AccountService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -11
  96. package/AccountService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -17
  97. package/AccountService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -11
  98. package/AccountService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -12
  99. package/AccountService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -13
  100. package/AccountService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -11
  101. package/AccountService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -17
  102. package/AccountService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -17
  103. package/AccountService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -9
  104. package/AccountService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -14
  105. package/AccountService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -13
  106. package/AccountService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -9
  107. package/AccountService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -9
  108. package/AccountService/models/Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour.ts +9 -9
  109. package/AccountService/models/Volo_Abp_Identity_IdentitySecurityLogDto.ts +21 -21
  110. package/AccountService/models/Volo_Abp_Identity_IdentityUserDto.ts +35 -35
  111. package/AccountService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -12
  112. package/AccountService/models/Volo_Abp_NameValue.ts +9 -9
  113. package/AccountService/schemas.gen.ts +5333 -5333
  114. package/AccountService/services/AbpApiDefinitionService.ts +34 -34
  115. package/AccountService/services/AbpApplicationConfigurationService.ts +34 -34
  116. package/AccountService/services/AbpApplicationLocalizationService.ts +37 -37
  117. package/AccountService/services/AbpTenantService.ts +58 -58
  118. package/AccountService/services/AccountExternalProviderService.ts +56 -56
  119. package/AccountService/services/AccountService.ts +545 -545
  120. package/AccountService/services/AccountSettingsService.ts +178 -178
  121. package/AccountService/services/DynamicClaimsService.ts +27 -27
  122. package/AccountService/services/LoginService.ts +99 -99
  123. package/AccountService/services/ProfileService.ts +155 -155
  124. package/AccountService/services/UserService.ts +313 -313
  125. package/AccountService/services.gen.ts +1539 -1539
  126. package/AccountService/types.gen.ts +3328 -3328
  127. package/AdministrationService/AdministrationServiceClient.ts +80 -80
  128. package/AdministrationService/core/ApiError.ts +20 -20
  129. package/AdministrationService/core/ApiRequestOptions.ts +12 -12
  130. package/AdministrationService/core/ApiResult.ts +6 -6
  131. package/AdministrationService/core/BaseHttpRequest.ts +9 -9
  132. package/AdministrationService/core/CancelablePromise.ts +125 -125
  133. package/AdministrationService/core/FetchHttpRequest.ts +21 -21
  134. package/AdministrationService/core/OpenAPI.ts +55 -55
  135. package/AdministrationService/core/request.ts +340 -340
  136. package/AdministrationService/index.ts +8 -8
  137. package/AdministrationService/models/System_Net_HttpStatusCode.ts +67 -67
  138. package/AdministrationService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -9
  139. package/AdministrationService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -10
  140. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -8
  141. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -30
  142. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -8
  143. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -8
  144. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -18
  145. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -9
  146. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -9
  147. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -8
  148. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -8
  149. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -17
  150. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -22
  151. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -14
  152. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -8
  153. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -10
  154. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -10
  155. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -9
  156. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -8
  157. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -13
  158. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -8
  159. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -8
  160. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -9
  161. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -19
  162. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -14
  163. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -8
  164. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -12
  165. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -8
  166. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -9
  167. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -10
  168. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -11
  169. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -11
  170. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -9
  171. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -8
  172. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -10
  173. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto.ts +11 -11
  174. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -8
  175. package/AdministrationService/models/Volo_Abp_AuditLogging_AuditLogActionDto.ts +16 -16
  176. package/AdministrationService/models/Volo_Abp_AuditLogging_AuditLogDto.ts +33 -33
  177. package/AdministrationService/models/Volo_Abp_AuditLogging_EntityChangeDto.ts +18 -18
  178. package/AdministrationService/models/Volo_Abp_AuditLogging_EntityChangeWithUsernameDto.ts +10 -10
  179. package/AdministrationService/models/Volo_Abp_AuditLogging_EntityPropertyChangeDto.ts +14 -14
  180. package/AdministrationService/models/Volo_Abp_AuditLogging_GetAverageExecutionDurationPerDayOutput.ts +8 -8
  181. package/AdministrationService/models/Volo_Abp_AuditLogging_GetErrorRateOutput.ts +8 -8
  182. package/AdministrationService/models/Volo_Abp_Auditing_EntityChangeType.ts +9 -9
  183. package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureDto.ts +17 -17
  184. package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureGroupDto.ts +11 -11
  185. package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureProviderDto.ts +9 -9
  186. package/AdministrationService/models/Volo_Abp_FeatureManagement_GetFeatureListResultDto.ts +9 -9
  187. package/AdministrationService/models/Volo_Abp_FeatureManagement_UpdateFeatureDto.ts +9 -9
  188. package/AdministrationService/models/Volo_Abp_FeatureManagement_UpdateFeaturesDto.ts +9 -9
  189. package/AdministrationService/models/Volo_Abp_Gdpr_DownloadTokenResultDto.ts +8 -8
  190. package/AdministrationService/models/Volo_Abp_Gdpr_GdprRequestDto.ts +10 -10
  191. package/AdministrationService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -20
  192. package/AdministrationService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -11
  193. package/AdministrationService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -17
  194. package/AdministrationService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -11
  195. package/AdministrationService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -12
  196. package/AdministrationService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -13
  197. package/AdministrationService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -11
  198. package/AdministrationService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -17
  199. package/AdministrationService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -17
  200. package/AdministrationService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -9
  201. package/AdministrationService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -14
  202. package/AdministrationService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -13
  203. package/AdministrationService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -9
  204. package/AdministrationService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -9
  205. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_CreateLanguageDto.ts +13 -13
  206. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_CultureInfoDto.ts +9 -9
  207. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageDto.ts +18 -18
  208. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageResourceDto.ts +8 -8
  209. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageTextDto.ts +13 -13
  210. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_UpdateLanguageDto.ts +12 -12
  211. package/AdministrationService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -12
  212. package/AdministrationService/models/Volo_Abp_NameValue.ts +9 -9
  213. package/AdministrationService/models/Volo_Abp_PermissionManagement_GetPermissionListResultDto.ts +10 -10
  214. package/AdministrationService/models/Volo_Abp_PermissionManagement_PermissionGrantInfoDto.ts +14 -14
  215. package/AdministrationService/models/Volo_Abp_PermissionManagement_PermissionGroupDto.ts +13 -13
  216. package/AdministrationService/models/Volo_Abp_PermissionManagement_ProviderInfoDto.ts +9 -9
  217. package/AdministrationService/models/Volo_Abp_PermissionManagement_UpdatePermissionDto.ts +9 -9
  218. package/AdministrationService/models/Volo_Abp_PermissionManagement_UpdatePermissionsDto.ts +9 -9
  219. package/AdministrationService/models/Volo_Abp_SettingManagement_EmailSettingsDto.ts +16 -16
  220. package/AdministrationService/models/Volo_Abp_SettingManagement_SendTestEmailInput.ts +11 -11
  221. package/AdministrationService/models/Volo_Abp_SettingManagement_UpdateEmailSettingsDto.ts +16 -16
  222. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_RestoreTemplateContentInput.ts +9 -9
  223. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_TemplateDefinitionDto.ts +13 -13
  224. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_TextTemplateContentDto.ts +10 -10
  225. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_UpdateTemplateContentInput.ts +10 -10
  226. package/AdministrationService/models/Volo_Abp_Validation_StringValues_IStringValueType.ts +11 -11
  227. package/AdministrationService/models/Volo_Abp_Validation_StringValues_IValueValidator.ts +9 -9
  228. package/AdministrationService/schemas.gen.ts +6745 -6745
  229. package/AdministrationService/services/AbpApiDefinitionService.ts +34 -34
  230. package/AdministrationService/services/AbpApplicationConfigurationService.ts +34 -34
  231. package/AdministrationService/services/AbpApplicationLocalizationService.ts +37 -37
  232. package/AdministrationService/services/AbpTenantService.ts +58 -58
  233. package/AdministrationService/services/AuditLogsService.ts +286 -286
  234. package/AdministrationService/services/EmailSettingsService.ts +76 -76
  235. package/AdministrationService/services/FeaturesService.ts +96 -96
  236. package/AdministrationService/services/GdprRequestService.ts +152 -152
  237. package/AdministrationService/services/LanguageTextsService.ts +157 -157
  238. package/AdministrationService/services/LanguagesService.ts +257 -257
  239. package/AdministrationService/services/PermissionsService.ts +69 -69
  240. package/AdministrationService/services/TextTemplateContentsService.ts +85 -85
  241. package/AdministrationService/services/TextTemplateDefinitionsService.ts +69 -69
  242. package/AdministrationService/services/TimeZoneSettingsService.ts +70 -70
  243. package/AdministrationService/services.gen.ts +1451 -1451
  244. package/AdministrationService/types.gen.ts +3007 -3007
  245. package/BackerService/BackerServiceClient.ts +50 -50
  246. package/BackerService/core/ApiError.ts +20 -20
  247. package/BackerService/core/ApiRequestOptions.ts +12 -12
  248. package/BackerService/core/ApiResult.ts +6 -6
  249. package/BackerService/core/BaseHttpRequest.ts +9 -9
  250. package/BackerService/core/CancelablePromise.ts +125 -125
  251. package/BackerService/core/FetchHttpRequest.ts +21 -21
  252. package/BackerService/core/OpenAPI.ts +55 -55
  253. package/BackerService/core/request.ts +340 -340
  254. package/BackerService/index.ts +8 -8
  255. package/BackerService/schemas.gen.ts +12444 -12444
  256. package/BackerService/services.gen.ts +866 -866
  257. package/BackerService/types.gen.ts +2170 -2170
  258. package/CRMService/CRMServiceClient.ts +15 -15
  259. package/CRMService/core/ApiRequestOptions.ts +16 -8
  260. package/CRMService/core/BaseHttpRequest.ts +1 -1
  261. package/CRMService/core/FetchHttpRequest.ts +1 -1
  262. package/CRMService/core/OpenAPI.ts +3 -3
  263. package/CRMService/core/request.ts +14 -5
  264. package/CRMService/index.ts +2 -2
  265. package/CRMService/schemas.gen.ts +342 -14826
  266. package/CRMService/types.gen.ts +401 -4471
  267. package/ContractService/ContractServiceClient.ts +65 -65
  268. package/ContractService/core/ApiError.ts +20 -20
  269. package/ContractService/core/ApiRequestOptions.ts +12 -12
  270. package/ContractService/core/ApiResult.ts +6 -6
  271. package/ContractService/core/BaseHttpRequest.ts +9 -9
  272. package/ContractService/core/CancelablePromise.ts +125 -125
  273. package/ContractService/core/FetchHttpRequest.ts +21 -21
  274. package/ContractService/core/OpenAPI.ts +55 -55
  275. package/ContractService/core/request.ts +340 -340
  276. package/ContractService/index.ts +8 -8
  277. package/ContractService/schemas.gen.ts +12076 -12076
  278. package/ContractService/services.gen.ts +1882 -1882
  279. package/ContractService/types.gen.ts +4145 -4145
  280. package/ExportValidationService/ExportValidationServiceClient.ts +44 -44
  281. package/ExportValidationService/core/ApiError.ts +20 -20
  282. package/ExportValidationService/core/ApiRequestOptions.ts +12 -12
  283. package/ExportValidationService/core/ApiResult.ts +6 -6
  284. package/ExportValidationService/core/BaseHttpRequest.ts +9 -9
  285. package/ExportValidationService/core/CancelablePromise.ts +125 -125
  286. package/ExportValidationService/core/FetchHttpRequest.ts +21 -21
  287. package/ExportValidationService/core/OpenAPI.ts +55 -55
  288. package/ExportValidationService/core/request.ts +340 -340
  289. package/ExportValidationService/index.ts +8 -8
  290. package/ExportValidationService/schemas.gen.ts +3998 -3998
  291. package/ExportValidationService/services.gen.ts +260 -260
  292. package/ExportValidationService/types.gen.ts +818 -818
  293. package/FinanceService/FinanceServiceClient.ts +47 -47
  294. package/FinanceService/core/ApiError.ts +20 -20
  295. package/FinanceService/core/ApiRequestOptions.ts +12 -12
  296. package/FinanceService/core/ApiResult.ts +6 -6
  297. package/FinanceService/core/BaseHttpRequest.ts +9 -9
  298. package/FinanceService/core/CancelablePromise.ts +125 -125
  299. package/FinanceService/core/FetchHttpRequest.ts +21 -21
  300. package/FinanceService/core/OpenAPI.ts +55 -55
  301. package/FinanceService/core/request.ts +340 -340
  302. package/FinanceService/index.ts +8 -8
  303. package/FinanceService/schemas.gen.ts +5006 -5006
  304. package/FinanceService/services.gen.ts +339 -339
  305. package/FinanceService/types.gen.ts +1128 -1128
  306. package/FundraiserService/FundraiserServiceClient.ts +47 -47
  307. package/FundraiserService/core/ApiError.ts +20 -20
  308. package/FundraiserService/core/ApiRequestOptions.ts +12 -12
  309. package/FundraiserService/core/ApiResult.ts +6 -6
  310. package/FundraiserService/core/BaseHttpRequest.ts +9 -9
  311. package/FundraiserService/core/CancelablePromise.ts +125 -125
  312. package/FundraiserService/core/FetchHttpRequest.ts +21 -21
  313. package/FundraiserService/core/OpenAPI.ts +55 -55
  314. package/FundraiserService/core/request.ts +340 -340
  315. package/FundraiserService/index.ts +8 -8
  316. package/FundraiserService/schemas.gen.ts +11548 -11548
  317. package/FundraiserService/services.gen.ts +627 -627
  318. package/FundraiserService/types.gen.ts +1793 -1793
  319. package/IdentityService/IdentityServiceClient.ts +86 -86
  320. package/IdentityService/core/ApiError.ts +20 -20
  321. package/IdentityService/core/ApiRequestOptions.ts +12 -12
  322. package/IdentityService/core/ApiResult.ts +6 -6
  323. package/IdentityService/core/BaseHttpRequest.ts +9 -9
  324. package/IdentityService/core/CancelablePromise.ts +125 -125
  325. package/IdentityService/core/FetchHttpRequest.ts +21 -21
  326. package/IdentityService/core/OpenAPI.ts +55 -55
  327. package/IdentityService/core/request.ts +340 -340
  328. package/IdentityService/index.ts +8 -8
  329. package/IdentityService/models/Volo_Abp_Account_AccountExternalProviderSettingsDto.ts +9 -9
  330. package/IdentityService/models/Volo_Abp_Account_AccountRecaptchaSettingsDto.ts +14 -14
  331. package/IdentityService/models/Volo_Abp_Account_AccountSettingsDto.ts +9 -9
  332. package/IdentityService/models/Volo_Abp_Account_AccountTwoFactorSettingsDto.ts +11 -11
  333. package/IdentityService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettings.ts +12 -12
  334. package/IdentityService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty.ts +9 -9
  335. package/IdentityService/models/Volo_Abp_Account_UpdateExternalProviderDto.ts +12 -12
  336. package/IdentityService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -9
  337. package/IdentityService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -10
  338. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -8
  339. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -30
  340. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -8
  341. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -8
  342. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -18
  343. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -9
  344. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -9
  345. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -8
  346. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -8
  347. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -17
  348. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -22
  349. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -14
  350. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -8
  351. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -10
  352. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -10
  353. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -9
  354. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -8
  355. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -13
  356. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -8
  357. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -8
  358. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -9
  359. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -19
  360. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -14
  361. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -8
  362. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -12
  363. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -8
  364. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -9
  365. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -10
  366. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -11
  367. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -11
  368. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -9
  369. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -8
  370. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -10
  371. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -8
  372. package/IdentityService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -20
  373. package/IdentityService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -11
  374. package/IdentityService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -17
  375. package/IdentityService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -11
  376. package/IdentityService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -12
  377. package/IdentityService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -13
  378. package/IdentityService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -11
  379. package/IdentityService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -17
  380. package/IdentityService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -17
  381. package/IdentityService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -9
  382. package/IdentityService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -14
  383. package/IdentityService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -13
  384. package/IdentityService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -9
  385. package/IdentityService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -9
  386. package/IdentityService/models/Volo_Abp_Identity_ClaimTypeDto.ts +19 -19
  387. package/IdentityService/models/Volo_Abp_Identity_CreateClaimTypeDto.ts +15 -15
  388. package/IdentityService/models/Volo_Abp_Identity_DownloadTokenResultDto.ts +8 -8
  389. package/IdentityService/models/Volo_Abp_Identity_ExternalLoginProviderDto.ts +9 -9
  390. package/IdentityService/models/Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour.ts +9 -9
  391. package/IdentityService/models/Volo_Abp_Identity_IdentityClaimValueType.ts +10 -10
  392. package/IdentityService/models/Volo_Abp_Identity_IdentityLdapSettingsDto.ts +15 -15
  393. package/IdentityService/models/Volo_Abp_Identity_IdentityLockoutSettingsDto.ts +10 -10
  394. package/IdentityService/models/Volo_Abp_Identity_IdentityOAuthSettingsDto.ts +15 -15
  395. package/IdentityService/models/Volo_Abp_Identity_IdentityPasswordSettingsDto.ts +15 -15
  396. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleClaimDto.ts +10 -10
  397. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleCreateDto.ts +11 -11
  398. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleDto.ts +15 -15
  399. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleLookupDto.ts +9 -9
  400. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleUpdateDto.ts +12 -12
  401. package/IdentityService/models/Volo_Abp_Identity_IdentitySecurityLogDto.ts +21 -21
  402. package/IdentityService/models/Volo_Abp_Identity_IdentitySettingsDto.ts +15 -15
  403. package/IdentityService/models/Volo_Abp_Identity_IdentitySignInSettingsDto.ts +10 -10
  404. package/IdentityService/models/Volo_Abp_Identity_IdentityUserClaimDto.ts +10 -10
  405. package/IdentityService/models/Volo_Abp_Identity_IdentityUserCreateDto.ts +20 -20
  406. package/IdentityService/models/Volo_Abp_Identity_IdentityUserDto.ts +35 -35
  407. package/IdentityService/models/Volo_Abp_Identity_IdentityUserSettingsDto.ts +9 -9
  408. package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdateDto.ts +19 -19
  409. package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdatePasswordInput.ts +8 -8
  410. package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdateRolesDto.ts +8 -8
  411. package/IdentityService/models/Volo_Abp_Identity_ImportExternalUserInput.ts +10 -10
  412. package/IdentityService/models/Volo_Abp_Identity_ImportUsersFromFileOutput.ts +12 -12
  413. package/IdentityService/models/Volo_Abp_Identity_ImportUsersFromFileType.ts +8 -8
  414. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitCreateDto.ts +10 -10
  415. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitDto.ts +21 -21
  416. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitLookupDto.ts +9 -9
  417. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitMoveInput.ts +8 -8
  418. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitRoleDto.ts +11 -11
  419. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitRoleInput.ts +8 -8
  420. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitUpdateDto.ts +10 -10
  421. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitUserInput.ts +8 -8
  422. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitWithDetailsDto.ts +23 -23
  423. package/IdentityService/models/Volo_Abp_Identity_UpdateClaimTypeDto.ts +16 -16
  424. package/IdentityService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -12
  425. package/IdentityService/models/Volo_Abp_NameValue.ts +9 -9
  426. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationDto.ts +29 -29
  427. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationTokenLifetimeDto.ts +13 -13
  428. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_CreateApplicationInput.ts +28 -28
  429. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_UpdateApplicationInput.ts +28 -28
  430. package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_CreateScopeInput.ts +12 -12
  431. package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_ScopeDto.ts +14 -14
  432. package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_UpdateScopeInput.ts +12 -12
  433. package/IdentityService/models/Volo_Abp_Users_UserData.ts +18 -18
  434. package/IdentityService/schemas.gen.ts +6928 -6928
  435. package/IdentityService/services/AbpApiDefinitionService.ts +34 -34
  436. package/IdentityService/services/AbpApplicationConfigurationService.ts +34 -34
  437. package/IdentityService/services/AbpApplicationLocalizationService.ts +37 -37
  438. package/IdentityService/services/AccountSettingsService.ts +178 -178
  439. package/IdentityService/services/ApplicationsService.ts +199 -199
  440. package/IdentityService/services/ClaimTypeService.ts +149 -149
  441. package/IdentityService/services/ExternalLoginService.ts +27 -27
  442. package/IdentityService/services/OrganizationUnitService.ts +539 -539
  443. package/IdentityService/services/RoleService.ts +269 -269
  444. package/IdentityService/services/ScopesService.ts +164 -164
  445. package/IdentityService/services/SecurityLogService.ts +174 -174
  446. package/IdentityService/services/SettingsService.ts +135 -135
  447. package/IdentityService/services/UserIntegrationService.ts +144 -144
  448. package/IdentityService/services/UserLookupService.ts +120 -120
  449. package/IdentityService/services/UserService.ts +937 -937
  450. package/IdentityService/services.gen.ts +3154 -3154
  451. package/IdentityService/types.gen.ts +5874 -5874
  452. package/LocationService/LocationServiceClient.ts +74 -74
  453. package/LocationService/core/ApiError.ts +20 -20
  454. package/LocationService/core/ApiRequestOptions.ts +12 -12
  455. package/LocationService/core/ApiResult.ts +6 -6
  456. package/LocationService/core/BaseHttpRequest.ts +9 -9
  457. package/LocationService/core/CancelablePromise.ts +125 -125
  458. package/LocationService/core/FetchHttpRequest.ts +21 -21
  459. package/LocationService/core/OpenAPI.ts +55 -55
  460. package/LocationService/core/request.ts +340 -340
  461. package/LocationService/index.ts +8 -8
  462. package/LocationService/schemas.gen.ts +6635 -6635
  463. package/LocationService/services.gen.ts +1797 -1797
  464. package/LocationService/types.gen.ts +3738 -3738
  465. package/MerchantService/MerchantServiceClient.ts +77 -77
  466. package/MerchantService/core/ApiError.ts +20 -20
  467. package/MerchantService/core/ApiRequestOptions.ts +12 -12
  468. package/MerchantService/core/ApiResult.ts +6 -6
  469. package/MerchantService/core/BaseHttpRequest.ts +9 -9
  470. package/MerchantService/core/CancelablePromise.ts +125 -125
  471. package/MerchantService/core/FetchHttpRequest.ts +21 -21
  472. package/MerchantService/core/OpenAPI.ts +55 -55
  473. package/MerchantService/core/request.ts +340 -340
  474. package/MerchantService/index.ts +8 -8
  475. package/MerchantService/schemas.gen.ts +14764 -14764
  476. package/MerchantService/services.gen.ts +1602 -1602
  477. package/MerchantService/types.gen.ts +18875 -18875
  478. package/ProjectService/ProjectServiceClient.ts +47 -47
  479. package/ProjectService/core/ApiError.ts +20 -20
  480. package/ProjectService/core/ApiRequestOptions.ts +12 -12
  481. package/ProjectService/core/ApiResult.ts +6 -6
  482. package/ProjectService/core/BaseHttpRequest.ts +9 -9
  483. package/ProjectService/core/CancelablePromise.ts +125 -125
  484. package/ProjectService/core/FetchHttpRequest.ts +21 -21
  485. package/ProjectService/core/OpenAPI.ts +55 -55
  486. package/ProjectService/core/request.ts +340 -340
  487. package/ProjectService/index.ts +8 -8
  488. package/ProjectService/schemas.gen.ts +5147 -5147
  489. package/ProjectService/services.gen.ts +492 -492
  490. package/ProjectService/types.gen.ts +1303 -1303
  491. package/README.md +40 -39
  492. package/RefundService/RefundServiceClient.ts +44 -44
  493. package/RefundService/core/ApiError.ts +20 -20
  494. package/RefundService/core/ApiRequestOptions.ts +12 -12
  495. package/RefundService/core/ApiResult.ts +6 -6
  496. package/RefundService/core/BaseHttpRequest.ts +9 -9
  497. package/RefundService/core/CancelablePromise.ts +125 -125
  498. package/RefundService/core/FetchHttpRequest.ts +21 -21
  499. package/RefundService/core/OpenAPI.ts +55 -55
  500. package/RefundService/core/request.ts +340 -340
  501. package/RefundService/index.ts +8 -8
  502. package/RefundService/schemas.gen.ts +5237 -5237
  503. package/RefundService/services.gen.ts +347 -347
  504. package/RefundService/types.gen.ts +1042 -1042
  505. package/SaasService/SaasServiceClient.ts +65 -65
  506. package/SaasService/core/ApiError.ts +20 -20
  507. package/SaasService/core/ApiRequestOptions.ts +12 -12
  508. package/SaasService/core/ApiResult.ts +6 -6
  509. package/SaasService/core/BaseHttpRequest.ts +9 -9
  510. package/SaasService/core/CancelablePromise.ts +125 -125
  511. package/SaasService/core/FetchHttpRequest.ts +21 -21
  512. package/SaasService/core/OpenAPI.ts +55 -55
  513. package/SaasService/core/request.ts +340 -340
  514. package/SaasService/index.ts +8 -8
  515. package/SaasService/schemas.gen.ts +5345 -5345
  516. package/SaasService/services.gen.ts +1329 -1329
  517. package/SaasService/types.gen.ts +2737 -2737
  518. package/SettingService/SettingServiceClient.ts +59 -59
  519. package/SettingService/core/ApiError.ts +20 -20
  520. package/SettingService/core/ApiRequestOptions.ts +12 -12
  521. package/SettingService/core/ApiResult.ts +6 -6
  522. package/SettingService/core/BaseHttpRequest.ts +9 -9
  523. package/SettingService/core/CancelablePromise.ts +125 -125
  524. package/SettingService/core/FetchHttpRequest.ts +21 -21
  525. package/SettingService/core/OpenAPI.ts +55 -55
  526. package/SettingService/core/request.ts +340 -340
  527. package/SettingService/index.ts +8 -8
  528. package/SettingService/schemas.gen.ts +5223 -5223
  529. package/SettingService/services.gen.ts +758 -758
  530. package/SettingService/types.gen.ts +1800 -1800
  531. package/TagService/TagServiceClient.ts +47 -47
  532. package/TagService/core/ApiError.ts +20 -20
  533. package/TagService/core/ApiRequestOptions.ts +12 -12
  534. package/TagService/core/ApiResult.ts +6 -6
  535. package/TagService/core/BaseHttpRequest.ts +9 -9
  536. package/TagService/core/CancelablePromise.ts +125 -125
  537. package/TagService/core/FetchHttpRequest.ts +21 -21
  538. package/TagService/core/OpenAPI.ts +55 -55
  539. package/TagService/core/request.ts +340 -340
  540. package/TagService/index.ts +8 -8
  541. package/TagService/schemas.gen.ts +5830 -5830
  542. package/TagService/services.gen.ts +556 -556
  543. package/TagService/types.gen.ts +1487 -1487
  544. package/TravellerService/TravellerServiceClient.ts +59 -59
  545. package/TravellerService/core/ApiError.ts +20 -20
  546. package/TravellerService/core/ApiRequestOptions.ts +12 -12
  547. package/TravellerService/core/ApiResult.ts +6 -6
  548. package/TravellerService/core/BaseHttpRequest.ts +9 -9
  549. package/TravellerService/core/CancelablePromise.ts +125 -125
  550. package/TravellerService/core/FetchHttpRequest.ts +21 -21
  551. package/TravellerService/core/OpenAPI.ts +55 -55
  552. package/TravellerService/core/request.ts +340 -340
  553. package/TravellerService/index.ts +8 -8
  554. package/TravellerService/schemas.gen.ts +6396 -6396
  555. package/TravellerService/services.gen.ts +949 -949
  556. package/TravellerService/types.gen.ts +2220 -2220
  557. package/index.mjs +38 -0
  558. package/package.json +37 -41
  559. package/ProjectService.json +0 -2938
  560. package/generator.mjs +0 -221
  561. package/index.ts +0 -2
  562. package/swagger.json +0 -4795
  563. package/upwithcrowdService/core/ApiError.ts +0 -21
  564. package/upwithcrowdService/core/ApiRequestOptions.ts +0 -13
  565. package/upwithcrowdService/core/ApiResult.ts +0 -7
  566. package/upwithcrowdService/core/BaseHttpRequest.ts +0 -10
  567. package/upwithcrowdService/core/CancelablePromise.ts +0 -126
  568. package/upwithcrowdService/core/FetchHttpRequest.ts +0 -22
  569. package/upwithcrowdService/core/OpenAPI.ts +0 -56
  570. package/upwithcrowdService/core/request.ts +0 -341
  571. package/upwithcrowdService/index.ts +0 -9
  572. package/upwithcrowdService/schemas.gen.ts +0 -11974
  573. package/upwithcrowdService/services.gen.ts +0 -6556
  574. package/upwithcrowdService/types.gen.ts +0 -12239
  575. package/upwithcrowdService/upwithcrowdServiceClient.ts +0 -161
  576. /package/CRMService/{services.gen.ts → sdk.gen.ts} +0 -0
@@ -1,1883 +1,1883 @@
1
- // This file is auto-generated by @hey-api/openapi-ts
2
-
3
- import type { CancelablePromise } from './core/CancelablePromise';
4
- import type { BaseHttpRequest } from './core/BaseHttpRequest';
5
- import type { GetApiAbpApiDefinitionData, GetApiAbpApiDefinitionResponse, GetApiAbpApplicationConfigurationData, GetApiAbpApplicationConfigurationResponse, GetApiAbpApplicationLocalizationData, GetApiAbpApplicationLocalizationResponse, PostApiContractServiceMerchantsContractsContractHeadersByIdValidateData, PostApiContractServiceMerchantsContractsContractHeadersByIdValidateResponse, GetApiContractServiceMerchantsContractsContractSettingsByIdData, GetApiContractServiceMerchantsContractsContractSettingsByIdResponse, PutApiContractServiceMerchantsContractsContractSettingsByIdData, PutApiContractServiceMerchantsContractsContractSettingsByIdResponse, DeleteApiContractServiceMerchantsContractsContractSettingsByIdData, DeleteApiContractServiceMerchantsContractsContractSettingsByIdResponse, GetApiContractServiceMerchantsContractsContractHeadersByIdContractSettingsData, GetApiContractServiceMerchantsContractsContractHeadersByIdContractSettingsResponse, PostApiContractServiceMerchantsContractsContractHeadersByIdContractSettingsData, PostApiContractServiceMerchantsContractsContractHeadersByIdContractSettingsResponse, GetApiContractServiceMerchantsContractsContractHeadersByIdContractStoresData, GetApiContractServiceMerchantsContractsContractHeadersByIdContractStoresResponse, PostApiContractServiceMerchantsContractsContractHeadersByIdContractStoresData, PostApiContractServiceMerchantsContractsContractHeadersByIdContractStoresResponse, GetApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsData, GetApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsResponse, PostApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsData, PostApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsResponse, PutApiContractServiceMerchantsContractsContractHeadersByIdSetDefaultSettingData, PutApiContractServiceMerchantsContractsContractHeadersByIdSetDefaultSettingResponse, PostApiContractServiceMerchantsByIdContractsContractHeadersData, PostApiContractServiceMerchantsByIdContractsContractHeadersResponse, GetApiContractServiceMerchantsByIdContractsContractHeadersData, GetApiContractServiceMerchantsByIdContractsContractHeadersResponse, DeleteApiContractServiceMerchantsContractsContractHeadersByIdData, DeleteApiContractServiceMerchantsContractsContractHeadersByIdResponse, GetApiContractServiceMerchantsContractsContractHeadersByIdData, GetApiContractServiceMerchantsContractsContractHeadersByIdResponse, PutApiContractServiceMerchantsContractsContractHeadersByIdData, PutApiContractServiceMerchantsContractsContractHeadersByIdResponse, GetApiContractServiceMerchantsContractsContractHeadersData, GetApiContractServiceMerchantsContractsContractHeadersResponse, GetApiContractServiceMerchantsContractsContractHeadersByIdGetMissingStepsData, GetApiContractServiceMerchantsContractsContractHeadersByIdGetMissingStepsResponse, GetIntegrationApiMerchantsForVatStatementData, GetIntegrationApiMerchantsForVatStatementResponse, PostApiContractServiceRefundPointsByIdContractsContractHeadersData, PostApiContractServiceRefundPointsByIdContractsContractHeadersResponse, GetApiContractServiceRefundPointsByIdContractsContractHeadersData, GetApiContractServiceRefundPointsByIdContractsContractHeadersResponse, DeleteApiContractServiceRefundPointsContractsContractHeadersByIdData, DeleteApiContractServiceRefundPointsContractsContractHeadersByIdResponse, GetApiContractServiceRefundPointsContractsContractHeadersByIdData, GetApiContractServiceRefundPointsContractsContractHeadersByIdResponse, PutApiContractServiceRefundPointsContractsContractHeadersByIdData, PutApiContractServiceRefundPointsContractsContractHeadersByIdResponse, GetApiContractServiceRefundPointsContractsContractHeadersData, GetApiContractServiceRefundPointsContractsContractHeadersResponse, GetApiContractServiceRefundPointsContractsContractHeadersByIdGetMissingStepsData, GetApiContractServiceRefundPointsContractsContractHeadersByIdGetMissingStepsResponse, PostApiContractServiceRefundPointsContractsContractHeadersByIdValidateData, PostApiContractServiceRefundPointsContractsContractHeadersByIdValidateResponse, PostIntegrationApiRefundPointsByIdCalculateFeesData, PostIntegrationApiRefundPointsByIdCalculateFeesResponse, PostIntegrationApiRefundPointsByIdCalculateFeesForRebateData, PostIntegrationApiRefundPointsByIdCalculateFeesForRebateResponse, GetApiContractServiceRebateTablesRebateSettingsByIdData, GetApiContractServiceRebateTablesRebateSettingsByIdResponse, PutApiContractServiceRebateTablesRebateSettingsByIdData, PutApiContractServiceRebateTablesRebateSettingsByIdResponse, PostApiContractServiceRebateTablesRebateSettingsByIdRebateTableHeadersData, PostApiContractServiceRebateTablesRebateSettingsByIdRebateTableHeadersResponse, PostApiContractServiceRebateTablesRebateSettingsByIdMinimumNetCommissionsData, PostApiContractServiceRebateTablesRebateSettingsByIdMinimumNetCommissionsResponse, GetApiContractServiceRebateTablesRebateSettingsDetailByIdData, GetApiContractServiceRebateTablesRebateSettingsDetailByIdResponse, GetApiContractServiceRebateTablesMinimumNetCommissionsByIdData, GetApiContractServiceRebateTablesMinimumNetCommissionsByIdResponse, PutApiContractServiceRebateTablesMinimumNetCommissionsByIdData, PutApiContractServiceRebateTablesMinimumNetCommissionsByIdResponse, DeleteApiContractServiceRebateTablesMinimumNetCommissionsByIdData, DeleteApiContractServiceRebateTablesMinimumNetCommissionsByIdResponse, GetApiContractServiceRebateTablesMinimumNetCommissionsData, GetApiContractServiceRebateTablesMinimumNetCommissionsResponse, GetApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdData, GetApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdResponse, PutApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdData, PutApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdResponse, DeleteApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdData, DeleteApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdResponse, PostApiContractServiceRebateTablesRebateTableHeadersByIdProcessingFeeDetailsData, PostApiContractServiceRebateTablesRebateTableHeadersByIdProcessingFeeDetailsResponse, GetApiContractServiceRebateTablesRebateTableDetailsByIdData, GetApiContractServiceRebateTablesRebateTableDetailsByIdResponse, PutApiContractServiceRebateTablesRebateTableDetailsByIdData, PutApiContractServiceRebateTablesRebateTableDetailsByIdResponse, DeleteApiContractServiceRebateTablesRebateTableDetailsByIdData, DeleteApiContractServiceRebateTablesRebateTableDetailsByIdResponse, GetApiContractServiceRebateTablesRebateTableDetailsData, GetApiContractServiceRebateTablesRebateTableDetailsResponse, GetApiContractServiceRebateTablesRebateTableHeadersByIdData, GetApiContractServiceRebateTablesRebateTableHeadersByIdResponse, PutApiContractServiceRebateTablesRebateTableHeadersByIdData, PutApiContractServiceRebateTablesRebateTableHeadersByIdResponse, GetApiContractServiceRebateTablesRebateTableHeadersTemplatesData, GetApiContractServiceRebateTablesRebateTableHeadersTemplatesResponse, PostApiContractServiceRebateTablesRebateTableHeadersTemplatesData, PostApiContractServiceRebateTablesRebateTableHeadersTemplatesResponse, PostApiContractServiceRebateTablesRebateTableHeadersByIdRebateTableDetailsData, PostApiContractServiceRebateTablesRebateTableHeadersByIdRebateTableDetailsResponse, GetIntegrationApiRefundFeeHeadersRefundPointsByIdData, GetIntegrationApiRefundFeeHeadersRefundPointsByIdResponse, GetIntegrationApiRefundTableHeadersMerchantsByIdData, GetIntegrationApiRefundTableHeadersMerchantsByIdResponse, GetApiContractServiceRefundTablesRefundTableHeadersByIdData, GetApiContractServiceRefundTablesRefundTableHeadersByIdResponse, PutApiContractServiceRefundTablesRefundTableHeadersByIdData, PutApiContractServiceRefundTablesRefundTableHeadersByIdResponse, DeleteApiContractServiceRefundTablesRefundTableHeadersByIdData, DeleteApiContractServiceRefundTablesRefundTableHeadersByIdResponse, GetApiContractServiceRefundTablesRefundTableHeadersData, GetApiContractServiceRefundTablesRefundTableHeadersResponse, PostApiContractServiceRefundTablesRefundTableHeadersData, PostApiContractServiceRefundTablesRefundTableHeadersResponse, PostApiContractServiceRefundTablesRefundTableHeadersByIdRefundTableDetailsData, PostApiContractServiceRefundTablesRefundTableHeadersByIdRefundTableDetailsResponse, DeleteApiContractServiceRefundTablesRefundTableDetailsByIdData, DeleteApiContractServiceRefundTablesRefundTableDetailsByIdResponse, GetApiContractServiceRefundTablesRefundFeeHeadersData, GetApiContractServiceRefundTablesRefundFeeHeadersResponse, PostApiContractServiceRefundTablesRefundFeeHeadersData, PostApiContractServiceRefundTablesRefundFeeHeadersResponse, GetApiContractServiceRefundTablesRefundFeeHeadersByIdData, GetApiContractServiceRefundTablesRefundFeeHeadersByIdResponse, PutApiContractServiceRefundTablesRefundFeeHeadersByIdData, PutApiContractServiceRefundTablesRefundFeeHeadersByIdResponse, DeleteApiContractServiceRefundTablesRefundFeeHeadersByIdData, DeleteApiContractServiceRefundTablesRefundFeeHeadersByIdResponse, PostApiContractServiceRefundTablesRefundFeeHeadersByIdRefundFeeDetailsData, PostApiContractServiceRefundTablesRefundFeeHeadersByIdRefundFeeDetailsResponse, DeleteApiContractServiceRefundTablesRefundFeeDetailsByIdData, DeleteApiContractServiceRefundTablesRefundFeeDetailsByIdResponse } from './types.gen';
6
-
7
- export class AbpApiDefinitionService {
8
- constructor(public readonly httpRequest: BaseHttpRequest) { }
9
-
10
- /**
11
- * @param data The data for the request.
12
- * @param data.includeTypes
13
- * @returns Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel Success
14
- * @throws ApiError
15
- */
16
- public getApiAbpApiDefinition(data: GetApiAbpApiDefinitionData = {}): CancelablePromise<GetApiAbpApiDefinitionResponse> {
17
- return this.httpRequest.request({
18
- method: 'GET',
19
- url: '/api/abp/api-definition',
20
- query: {
21
- IncludeTypes: data.includeTypes
22
- },
23
- errors: {
24
- 400: 'Bad Request',
25
- 401: 'Unauthorized',
26
- 403: 'Forbidden',
27
- 404: 'Not Found',
28
- 500: 'Server Error',
29
- 501: 'Server Error'
30
- }
31
- });
32
- }
33
-
34
- }
35
-
36
- export class AbpApplicationConfigurationService {
37
- constructor(public readonly httpRequest: BaseHttpRequest) { }
38
-
39
- /**
40
- * @param data The data for the request.
41
- * @param data.includeLocalizationResources
42
- * @returns Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto Success
43
- * @throws ApiError
44
- */
45
- public getApiAbpApplicationConfiguration(data: GetApiAbpApplicationConfigurationData = {}): CancelablePromise<GetApiAbpApplicationConfigurationResponse> {
46
- return this.httpRequest.request({
47
- method: 'GET',
48
- url: '/api/abp/application-configuration',
49
- query: {
50
- IncludeLocalizationResources: data.includeLocalizationResources
51
- },
52
- errors: {
53
- 400: 'Bad Request',
54
- 401: 'Unauthorized',
55
- 403: 'Forbidden',
56
- 404: 'Not Found',
57
- 500: 'Server Error',
58
- 501: 'Server Error'
59
- }
60
- });
61
- }
62
-
63
- }
64
-
65
- export class AbpApplicationLocalizationService {
66
- constructor(public readonly httpRequest: BaseHttpRequest) { }
67
-
68
- /**
69
- * @param data The data for the request.
70
- * @param data.cultureName
71
- * @param data.onlyDynamics
72
- * @returns Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto Success
73
- * @throws ApiError
74
- */
75
- public getApiAbpApplicationLocalization(data: GetApiAbpApplicationLocalizationData): CancelablePromise<GetApiAbpApplicationLocalizationResponse> {
76
- return this.httpRequest.request({
77
- method: 'GET',
78
- url: '/api/abp/application-localization',
79
- query: {
80
- CultureName: data.cultureName,
81
- OnlyDynamics: data.onlyDynamics
82
- },
83
- errors: {
84
- 400: 'Bad Request',
85
- 401: 'Unauthorized',
86
- 403: 'Forbidden',
87
- 404: 'Not Found',
88
- 500: 'Server Error',
89
- 501: 'Server Error'
90
- }
91
- });
92
- }
93
-
94
- }
95
-
96
- export class ContractsMerchantService {
97
- constructor(public readonly httpRequest: BaseHttpRequest) { }
98
-
99
- /**
100
- * @param data The data for the request.
101
- * @param data.id
102
- * @returns boolean Success
103
- * @throws ApiError
104
- */
105
- public postApiContractServiceMerchantsContractsContractHeadersByIdValidate(data: PostApiContractServiceMerchantsContractsContractHeadersByIdValidateData): CancelablePromise<PostApiContractServiceMerchantsContractsContractHeadersByIdValidateResponse> {
106
- return this.httpRequest.request({
107
- method: 'POST',
108
- url: '/api/contract-service/merchants/contracts/contract-headers/{id}/validate',
109
- path: {
110
- id: data.id
111
- },
112
- errors: {
113
- 400: 'Bad Request',
114
- 401: 'Unauthorized',
115
- 403: 'Forbidden',
116
- 404: 'Not Found',
117
- 500: 'Server Error',
118
- 501: 'Server Error'
119
- }
120
- });
121
- }
122
-
123
- /**
124
- * @param data The data for the request.
125
- * @param data.id
126
- * @returns UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingDto Success
127
- * @throws ApiError
128
- */
129
- public getApiContractServiceMerchantsContractsContractSettingsById(data: GetApiContractServiceMerchantsContractsContractSettingsByIdData): CancelablePromise<GetApiContractServiceMerchantsContractsContractSettingsByIdResponse> {
130
- return this.httpRequest.request({
131
- method: 'GET',
132
- url: '/api/contract-service/merchants/contracts/contract-settings/{id}',
133
- path: {
134
- id: data.id
135
- },
136
- errors: {
137
- 400: 'Bad Request',
138
- 401: 'Unauthorized',
139
- 403: 'Forbidden',
140
- 404: 'Not Found',
141
- 500: 'Server Error',
142
- 501: 'Server Error'
143
- }
144
- });
145
- }
146
-
147
- /**
148
- * @param data The data for the request.
149
- * @param data.id
150
- * @param data.requestBody
151
- * @returns UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingDto Success
152
- * @throws ApiError
153
- */
154
- public putApiContractServiceMerchantsContractsContractSettingsById(data: PutApiContractServiceMerchantsContractsContractSettingsByIdData): CancelablePromise<PutApiContractServiceMerchantsContractsContractSettingsByIdResponse> {
155
- return this.httpRequest.request({
156
- method: 'PUT',
157
- url: '/api/contract-service/merchants/contracts/contract-settings/{id}',
158
- path: {
159
- id: data.id
160
- },
161
- body: data.requestBody,
162
- mediaType: 'application/json',
163
- errors: {
164
- 400: 'Bad Request',
165
- 401: 'Unauthorized',
166
- 403: 'Forbidden',
167
- 404: 'Not Found',
168
- 500: 'Server Error',
169
- 501: 'Server Error'
170
- }
171
- });
172
- }
173
-
174
- /**
175
- * @param data The data for the request.
176
- * @param data.id
177
- * @returns unknown Success
178
- * @throws ApiError
179
- */
180
- public deleteApiContractServiceMerchantsContractsContractSettingsById(data: DeleteApiContractServiceMerchantsContractsContractSettingsByIdData): CancelablePromise<DeleteApiContractServiceMerchantsContractsContractSettingsByIdResponse> {
181
- return this.httpRequest.request({
182
- method: 'DELETE',
183
- url: '/api/contract-service/merchants/contracts/contract-settings/{id}',
184
- path: {
185
- id: data.id
186
- },
187
- errors: {
188
- 400: 'Bad Request',
189
- 401: 'Unauthorized',
190
- 403: 'Forbidden',
191
- 404: 'Not Found',
192
- 500: 'Server Error',
193
- 501: 'Server Error'
194
- }
195
- });
196
- }
197
-
198
- /**
199
- * @param data The data for the request.
200
- * @param data.id
201
- * @param data.sorting
202
- * @param data.skipCount
203
- * @param data.maxResultCount
204
- * @returns PagedResultDto_ContractSettingDto Success
205
- * @throws ApiError
206
- */
207
- public getApiContractServiceMerchantsContractsContractHeadersByIdContractSettings(data: GetApiContractServiceMerchantsContractsContractHeadersByIdContractSettingsData): CancelablePromise<GetApiContractServiceMerchantsContractsContractHeadersByIdContractSettingsResponse> {
208
- return this.httpRequest.request({
209
- method: 'GET',
210
- url: '/api/contract-service/merchants/contracts/contract-headers/{id}/contract-settings',
211
- path: {
212
- id: data.id
213
- },
214
- query: {
215
- Sorting: data.sorting,
216
- SkipCount: data.skipCount,
217
- MaxResultCount: data.maxResultCount
218
- },
219
- errors: {
220
- 400: 'Bad Request',
221
- 401: 'Unauthorized',
222
- 403: 'Forbidden',
223
- 404: 'Not Found',
224
- 500: 'Server Error',
225
- 501: 'Server Error'
226
- }
227
- });
228
- }
229
-
230
- /**
231
- * @param data The data for the request.
232
- * @param data.id
233
- * @param data.requestBody
234
- * @returns UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingDto Success
235
- * @throws ApiError
236
- */
237
- public postApiContractServiceMerchantsContractsContractHeadersByIdContractSettings(data: PostApiContractServiceMerchantsContractsContractHeadersByIdContractSettingsData): CancelablePromise<PostApiContractServiceMerchantsContractsContractHeadersByIdContractSettingsResponse> {
238
- return this.httpRequest.request({
239
- method: 'POST',
240
- url: '/api/contract-service/merchants/contracts/contract-headers/{id}/contract-settings',
241
- path: {
242
- id: data.id
243
- },
244
- body: data.requestBody,
245
- mediaType: 'application/json',
246
- errors: {
247
- 400: 'Bad Request',
248
- 401: 'Unauthorized',
249
- 403: 'Forbidden',
250
- 404: 'Not Found',
251
- 500: 'Server Error',
252
- 501: 'Server Error'
253
- }
254
- });
255
- }
256
-
257
- /**
258
- * @param data The data for the request.
259
- * @param data.id
260
- * @param data.sorting
261
- * @param data.skipCount
262
- * @param data.maxResultCount
263
- * @returns PagedResultDto_ContractStoreDetailedDto Success
264
- * @throws ApiError
265
- */
266
- public getApiContractServiceMerchantsContractsContractHeadersByIdContractStores(data: GetApiContractServiceMerchantsContractsContractHeadersByIdContractStoresData): CancelablePromise<GetApiContractServiceMerchantsContractsContractHeadersByIdContractStoresResponse> {
267
- return this.httpRequest.request({
268
- method: 'GET',
269
- url: '/api/contract-service/merchants/contracts/contract-headers/{id}/contract-stores',
270
- path: {
271
- id: data.id
272
- },
273
- query: {
274
- Sorting: data.sorting,
275
- SkipCount: data.skipCount,
276
- MaxResultCount: data.maxResultCount
277
- },
278
- errors: {
279
- 400: 'Bad Request',
280
- 401: 'Unauthorized',
281
- 403: 'Forbidden',
282
- 404: 'Not Found',
283
- 500: 'Server Error',
284
- 501: 'Server Error'
285
- }
286
- });
287
- }
288
-
289
- /**
290
- * @param data The data for the request.
291
- * @param data.id
292
- * @param data.requestBody
293
- * @returns UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreDto Success
294
- * @throws ApiError
295
- */
296
- public postApiContractServiceMerchantsContractsContractHeadersByIdContractStores(data: PostApiContractServiceMerchantsContractsContractHeadersByIdContractStoresData): CancelablePromise<PostApiContractServiceMerchantsContractsContractHeadersByIdContractStoresResponse> {
297
- return this.httpRequest.request({
298
- method: 'POST',
299
- url: '/api/contract-service/merchants/contracts/contract-headers/{id}/contract-stores',
300
- path: {
301
- id: data.id
302
- },
303
- body: data.requestBody,
304
- mediaType: 'application/json',
305
- errors: {
306
- 400: 'Bad Request',
307
- 401: 'Unauthorized',
308
- 403: 'Forbidden',
309
- 404: 'Not Found',
310
- 500: 'Server Error',
311
- 501: 'Server Error'
312
- }
313
- });
314
- }
315
-
316
- /**
317
- * @param data The data for the request.
318
- * @param data.id
319
- * @returns UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto Success
320
- * @throws ApiError
321
- */
322
- public getApiContractServiceMerchantsContractsContractHeadersByIdRebateSettings(data: GetApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsData): CancelablePromise<GetApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsResponse> {
323
- return this.httpRequest.request({
324
- method: 'GET',
325
- url: '/api/contract-service/merchants/contracts/contract-headers/{id}/rebate-settings',
326
- path: {
327
- id: data.id
328
- },
329
- errors: {
330
- 400: 'Bad Request',
331
- 401: 'Unauthorized',
332
- 403: 'Forbidden',
333
- 404: 'Not Found',
334
- 500: 'Server Error',
335
- 501: 'Server Error'
336
- }
337
- });
338
- }
339
-
340
- /**
341
- * @param data The data for the request.
342
- * @param data.id
343
- * @param data.requestBody
344
- * @returns UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto Success
345
- * @throws ApiError
346
- */
347
- public postApiContractServiceMerchantsContractsContractHeadersByIdRebateSettings(data: PostApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsData): CancelablePromise<PostApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsResponse> {
348
- return this.httpRequest.request({
349
- method: 'POST',
350
- url: '/api/contract-service/merchants/contracts/contract-headers/{id}/rebate-settings',
351
- path: {
352
- id: data.id
353
- },
354
- body: data.requestBody,
355
- mediaType: 'application/json',
356
- errors: {
357
- 400: 'Bad Request',
358
- 401: 'Unauthorized',
359
- 403: 'Forbidden',
360
- 404: 'Not Found',
361
- 500: 'Server Error',
362
- 501: 'Server Error'
363
- }
364
- });
365
- }
366
-
367
- /**
368
- * @param data The data for the request.
369
- * @param data.id
370
- * @param data.requestBody
371
- * @returns UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingDto Success
372
- * @throws ApiError
373
- */
374
- public putApiContractServiceMerchantsContractsContractHeadersByIdSetDefaultSetting(data: PutApiContractServiceMerchantsContractsContractHeadersByIdSetDefaultSettingData): CancelablePromise<PutApiContractServiceMerchantsContractsContractHeadersByIdSetDefaultSettingResponse> {
375
- return this.httpRequest.request({
376
- method: 'PUT',
377
- url: '/api/contract-service/merchants/contracts/contract-headers/{id}/set-default-setting',
378
- path: {
379
- id: data.id
380
- },
381
- body: data.requestBody,
382
- mediaType: 'application/json',
383
- errors: {
384
- 400: 'Bad Request',
385
- 401: 'Unauthorized',
386
- 403: 'Forbidden',
387
- 404: 'Not Found',
388
- 500: 'Server Error',
389
- 501: 'Server Error'
390
- }
391
- });
392
- }
393
-
394
- /**
395
- * @param data The data for the request.
396
- * @param data.id
397
- * @param data.requestBody
398
- * @returns UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderForMerchantDto Success
399
- * @throws ApiError
400
- */
401
- public postApiContractServiceMerchantsByIdContractsContractHeaders(data: PostApiContractServiceMerchantsByIdContractsContractHeadersData): CancelablePromise<PostApiContractServiceMerchantsByIdContractsContractHeadersResponse> {
402
- return this.httpRequest.request({
403
- method: 'POST',
404
- url: '/api/contract-service/merchants/{id}/contracts/contract-headers',
405
- path: {
406
- id: data.id
407
- },
408
- body: data.requestBody,
409
- mediaType: 'application/json',
410
- errors: {
411
- 400: 'Bad Request',
412
- 401: 'Unauthorized',
413
- 403: 'Forbidden',
414
- 404: 'Not Found',
415
- 500: 'Server Error',
416
- 501: 'Server Error'
417
- }
418
- });
419
- }
420
-
421
- /**
422
- * @param data The data for the request.
423
- * @param data.id
424
- * @param data.isDraft
425
- * @param data.sorting
426
- * @param data.skipCount
427
- * @param data.maxResultCount
428
- * @returns PagedResultDto_ContractHeaderDetailForMerchantDto Success
429
- * @throws ApiError
430
- */
431
- public getApiContractServiceMerchantsByIdContractsContractHeaders(data: GetApiContractServiceMerchantsByIdContractsContractHeadersData): CancelablePromise<GetApiContractServiceMerchantsByIdContractsContractHeadersResponse> {
432
- return this.httpRequest.request({
433
- method: 'GET',
434
- url: '/api/contract-service/merchants/{id}/contracts/contract-headers',
435
- path: {
436
- id: data.id
437
- },
438
- query: {
439
- IsDraft: data.isDraft,
440
- Sorting: data.sorting,
441
- SkipCount: data.skipCount,
442
- MaxResultCount: data.maxResultCount
443
- },
444
- errors: {
445
- 400: 'Bad Request',
446
- 401: 'Unauthorized',
447
- 403: 'Forbidden',
448
- 404: 'Not Found',
449
- 500: 'Server Error',
450
- 501: 'Server Error'
451
- }
452
- });
453
- }
454
-
455
- /**
456
- * @param data The data for the request.
457
- * @param data.id
458
- * @returns unknown Success
459
- * @throws ApiError
460
- */
461
- public deleteApiContractServiceMerchantsContractsContractHeadersById(data: DeleteApiContractServiceMerchantsContractsContractHeadersByIdData): CancelablePromise<DeleteApiContractServiceMerchantsContractsContractHeadersByIdResponse> {
462
- return this.httpRequest.request({
463
- method: 'DELETE',
464
- url: '/api/contract-service/merchants/contracts/contract-headers/{id}',
465
- path: {
466
- id: data.id
467
- },
468
- errors: {
469
- 400: 'Bad Request',
470
- 401: 'Unauthorized',
471
- 403: 'Forbidden',
472
- 404: 'Not Found',
473
- 500: 'Server Error',
474
- 501: 'Server Error'
475
- }
476
- });
477
- }
478
-
479
- /**
480
- * @param data The data for the request.
481
- * @param data.id
482
- * @returns UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderDetailForMerchantDto Success
483
- * @throws ApiError
484
- */
485
- public getApiContractServiceMerchantsContractsContractHeadersById(data: GetApiContractServiceMerchantsContractsContractHeadersByIdData): CancelablePromise<GetApiContractServiceMerchantsContractsContractHeadersByIdResponse> {
486
- return this.httpRequest.request({
487
- method: 'GET',
488
- url: '/api/contract-service/merchants/contracts/contract-headers/{id}',
489
- path: {
490
- id: data.id
491
- },
492
- errors: {
493
- 400: 'Bad Request',
494
- 401: 'Unauthorized',
495
- 403: 'Forbidden',
496
- 404: 'Not Found',
497
- 500: 'Server Error',
498
- 501: 'Server Error'
499
- }
500
- });
501
- }
502
-
503
- /**
504
- * @param data The data for the request.
505
- * @param data.id
506
- * @param data.requestBody
507
- * @returns UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderDetailForMerchantDto Success
508
- * @throws ApiError
509
- */
510
- public putApiContractServiceMerchantsContractsContractHeadersById(data: PutApiContractServiceMerchantsContractsContractHeadersByIdData): CancelablePromise<PutApiContractServiceMerchantsContractsContractHeadersByIdResponse> {
511
- return this.httpRequest.request({
512
- method: 'PUT',
513
- url: '/api/contract-service/merchants/contracts/contract-headers/{id}',
514
- path: {
515
- id: data.id
516
- },
517
- body: data.requestBody,
518
- mediaType: 'application/json',
519
- errors: {
520
- 400: 'Bad Request',
521
- 401: 'Unauthorized',
522
- 403: 'Forbidden',
523
- 404: 'Not Found',
524
- 500: 'Server Error',
525
- 501: 'Server Error'
526
- }
527
- });
528
- }
529
-
530
- /**
531
- * @param data The data for the request.
532
- * @param data.isDraft
533
- * @param data.sorting
534
- * @param data.skipCount
535
- * @param data.maxResultCount
536
- * @returns PagedResultDto_ContractHeaderForMerchantDto Success
537
- * @throws ApiError
538
- */
539
- public getApiContractServiceMerchantsContractsContractHeaders(data: GetApiContractServiceMerchantsContractsContractHeadersData = {}): CancelablePromise<GetApiContractServiceMerchantsContractsContractHeadersResponse> {
540
- return this.httpRequest.request({
541
- method: 'GET',
542
- url: '/api/contract-service/merchants/contracts/contract-headers',
543
- query: {
544
- IsDraft: data.isDraft,
545
- Sorting: data.sorting,
546
- SkipCount: data.skipCount,
547
- MaxResultCount: data.maxResultCount
548
- },
549
- errors: {
550
- 400: 'Bad Request',
551
- 401: 'Unauthorized',
552
- 403: 'Forbidden',
553
- 404: 'Not Found',
554
- 500: 'Server Error',
555
- 501: 'Server Error'
556
- }
557
- });
558
- }
559
-
560
- /**
561
- * @param data The data for the request.
562
- * @param data.id
563
- * @returns UniRefund_ContractService_Enums_ContractHeaderForMerchantDraftMissingSteps Success
564
- * @throws ApiError
565
- */
566
- public getApiContractServiceMerchantsContractsContractHeadersByIdGetMissingSteps(data: GetApiContractServiceMerchantsContractsContractHeadersByIdGetMissingStepsData): CancelablePromise<GetApiContractServiceMerchantsContractsContractHeadersByIdGetMissingStepsResponse> {
567
- return this.httpRequest.request({
568
- method: 'GET',
569
- url: '/api/contract-service/merchants/contracts/contract-headers/{id}/get-missing-steps',
570
- path: {
571
- id: data.id
572
- },
573
- errors: {
574
- 400: 'Bad Request',
575
- 401: 'Unauthorized',
576
- 403: 'Forbidden',
577
- 404: 'Not Found',
578
- 500: 'Server Error',
579
- 501: 'Server Error'
580
- }
581
- });
582
- }
583
-
584
- }
585
-
586
- export class ContractsMerchantIntegrationService {
587
- constructor(public readonly httpRequest: BaseHttpRequest) { }
588
-
589
- /**
590
- * @param data The data for the request.
591
- * @param data.contractHeaderIds
592
- * @returns UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderInformationForVATStatementDto Success
593
- * @throws ApiError
594
- */
595
- public getIntegrationApiMerchantsForVatStatement(data: GetIntegrationApiMerchantsForVatStatementData = {}): CancelablePromise<GetIntegrationApiMerchantsForVatStatementResponse> {
596
- return this.httpRequest.request({
597
- method: 'GET',
598
- url: '/integration-api/merchants/for-vat-statement',
599
- query: {
600
- contractHeaderIds: data.contractHeaderIds
601
- },
602
- errors: {
603
- 400: 'Bad Request',
604
- 401: 'Unauthorized',
605
- 403: 'Forbidden',
606
- 404: 'Not Found',
607
- 500: 'Server Error',
608
- 501: 'Server Error'
609
- }
610
- });
611
- }
612
-
613
- }
614
-
615
- export class ContractsRefundPointService {
616
- constructor(public readonly httpRequest: BaseHttpRequest) { }
617
-
618
- /**
619
- * @param data The data for the request.
620
- * @param data.id
621
- * @param data.requestBody
622
- * @returns UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_ContractHeaderForRefundPointDto Success
623
- * @throws ApiError
624
- */
625
- public postApiContractServiceRefundPointsByIdContractsContractHeaders(data: PostApiContractServiceRefundPointsByIdContractsContractHeadersData): CancelablePromise<PostApiContractServiceRefundPointsByIdContractsContractHeadersResponse> {
626
- return this.httpRequest.request({
627
- method: 'POST',
628
- url: '/api/contract-service/refund-points/{id}/contracts/contract-headers',
629
- path: {
630
- id: data.id
631
- },
632
- body: data.requestBody,
633
- mediaType: 'application/json',
634
- errors: {
635
- 400: 'Bad Request',
636
- 401: 'Unauthorized',
637
- 403: 'Forbidden',
638
- 404: 'Not Found',
639
- 500: 'Server Error',
640
- 501: 'Server Error'
641
- }
642
- });
643
- }
644
-
645
- /**
646
- * @param data The data for the request.
647
- * @param data.id
648
- * @param data.isDraft
649
- * @param data.sorting
650
- * @param data.skipCount
651
- * @param data.maxResultCount
652
- * @returns PagedResultDto_ContractHeaderDetailForRefundPointDto Success
653
- * @throws ApiError
654
- */
655
- public getApiContractServiceRefundPointsByIdContractsContractHeaders(data: GetApiContractServiceRefundPointsByIdContractsContractHeadersData): CancelablePromise<GetApiContractServiceRefundPointsByIdContractsContractHeadersResponse> {
656
- return this.httpRequest.request({
657
- method: 'GET',
658
- url: '/api/contract-service/refund-points/{id}/contracts/contract-headers',
659
- path: {
660
- id: data.id
661
- },
662
- query: {
663
- IsDraft: data.isDraft,
664
- Sorting: data.sorting,
665
- SkipCount: data.skipCount,
666
- MaxResultCount: data.maxResultCount
667
- },
668
- errors: {
669
- 400: 'Bad Request',
670
- 401: 'Unauthorized',
671
- 403: 'Forbidden',
672
- 404: 'Not Found',
673
- 500: 'Server Error',
674
- 501: 'Server Error'
675
- }
676
- });
677
- }
678
-
679
- /**
680
- * @param data The data for the request.
681
- * @param data.id
682
- * @returns unknown Success
683
- * @throws ApiError
684
- */
685
- public deleteApiContractServiceRefundPointsContractsContractHeadersById(data: DeleteApiContractServiceRefundPointsContractsContractHeadersByIdData): CancelablePromise<DeleteApiContractServiceRefundPointsContractsContractHeadersByIdResponse> {
686
- return this.httpRequest.request({
687
- method: 'DELETE',
688
- url: '/api/contract-service/refund-points/contracts/contract-headers/{id}',
689
- path: {
690
- id: data.id
691
- },
692
- errors: {
693
- 400: 'Bad Request',
694
- 401: 'Unauthorized',
695
- 403: 'Forbidden',
696
- 404: 'Not Found',
697
- 500: 'Server Error',
698
- 501: 'Server Error'
699
- }
700
- });
701
- }
702
-
703
- /**
704
- * @param data The data for the request.
705
- * @param data.id
706
- * @returns UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_ContractHeaderDetailForRefundPointDto Success
707
- * @throws ApiError
708
- */
709
- public getApiContractServiceRefundPointsContractsContractHeadersById(data: GetApiContractServiceRefundPointsContractsContractHeadersByIdData): CancelablePromise<GetApiContractServiceRefundPointsContractsContractHeadersByIdResponse> {
710
- return this.httpRequest.request({
711
- method: 'GET',
712
- url: '/api/contract-service/refund-points/contracts/contract-headers/{id}',
713
- path: {
714
- id: data.id
715
- },
716
- errors: {
717
- 400: 'Bad Request',
718
- 401: 'Unauthorized',
719
- 403: 'Forbidden',
720
- 404: 'Not Found',
721
- 500: 'Server Error',
722
- 501: 'Server Error'
723
- }
724
- });
725
- }
726
-
727
- /**
728
- * @param data The data for the request.
729
- * @param data.id
730
- * @param data.requestBody
731
- * @returns UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_ContractHeaderDetailForRefundPointDto Success
732
- * @throws ApiError
733
- */
734
- public putApiContractServiceRefundPointsContractsContractHeadersById(data: PutApiContractServiceRefundPointsContractsContractHeadersByIdData): CancelablePromise<PutApiContractServiceRefundPointsContractsContractHeadersByIdResponse> {
735
- return this.httpRequest.request({
736
- method: 'PUT',
737
- url: '/api/contract-service/refund-points/contracts/contract-headers/{id}',
738
- path: {
739
- id: data.id
740
- },
741
- body: data.requestBody,
742
- mediaType: 'application/json',
743
- errors: {
744
- 400: 'Bad Request',
745
- 401: 'Unauthorized',
746
- 403: 'Forbidden',
747
- 404: 'Not Found',
748
- 500: 'Server Error',
749
- 501: 'Server Error'
750
- }
751
- });
752
- }
753
-
754
- /**
755
- * @param data The data for the request.
756
- * @param data.isDraft
757
- * @param data.sorting
758
- * @param data.skipCount
759
- * @param data.maxResultCount
760
- * @returns PagedResultDto_ContractHeaderForRefundPointDto Success
761
- * @throws ApiError
762
- */
763
- public getApiContractServiceRefundPointsContractsContractHeaders(data: GetApiContractServiceRefundPointsContractsContractHeadersData = {}): CancelablePromise<GetApiContractServiceRefundPointsContractsContractHeadersResponse> {
764
- return this.httpRequest.request({
765
- method: 'GET',
766
- url: '/api/contract-service/refund-points/contracts/contract-headers',
767
- query: {
768
- IsDraft: data.isDraft,
769
- Sorting: data.sorting,
770
- SkipCount: data.skipCount,
771
- MaxResultCount: data.maxResultCount
772
- },
773
- errors: {
774
- 400: 'Bad Request',
775
- 401: 'Unauthorized',
776
- 403: 'Forbidden',
777
- 404: 'Not Found',
778
- 500: 'Server Error',
779
- 501: 'Server Error'
780
- }
781
- });
782
- }
783
-
784
- /**
785
- * @param data The data for the request.
786
- * @param data.id
787
- * @returns UniRefund_ContractService_Enums_ContractHeaderForRefundPointDraftMissingSteps Success
788
- * @throws ApiError
789
- */
790
- public getApiContractServiceRefundPointsContractsContractHeadersByIdGetMissingSteps(data: GetApiContractServiceRefundPointsContractsContractHeadersByIdGetMissingStepsData): CancelablePromise<GetApiContractServiceRefundPointsContractsContractHeadersByIdGetMissingStepsResponse> {
791
- return this.httpRequest.request({
792
- method: 'GET',
793
- url: '/api/contract-service/refund-points/contracts/contract-headers/{id}/get-missing-steps',
794
- path: {
795
- id: data.id
796
- },
797
- errors: {
798
- 400: 'Bad Request',
799
- 401: 'Unauthorized',
800
- 403: 'Forbidden',
801
- 404: 'Not Found',
802
- 500: 'Server Error',
803
- 501: 'Server Error'
804
- }
805
- });
806
- }
807
-
808
- /**
809
- * @param data The data for the request.
810
- * @param data.id
811
- * @returns boolean Success
812
- * @throws ApiError
813
- */
814
- public postApiContractServiceRefundPointsContractsContractHeadersByIdValidate(data: PostApiContractServiceRefundPointsContractsContractHeadersByIdValidateData): CancelablePromise<PostApiContractServiceRefundPointsContractsContractHeadersByIdValidateResponse> {
815
- return this.httpRequest.request({
816
- method: 'POST',
817
- url: '/api/contract-service/refund-points/contracts/contract-headers/{id}/validate',
818
- path: {
819
- id: data.id
820
- },
821
- errors: {
822
- 400: 'Bad Request',
823
- 401: 'Unauthorized',
824
- 403: 'Forbidden',
825
- 404: 'Not Found',
826
- 500: 'Server Error',
827
- 501: 'Server Error'
828
- }
829
- });
830
- }
831
-
832
- }
833
-
834
- export class ContractsRefundPointIntegrationService {
835
- constructor(public readonly httpRequest: BaseHttpRequest) { }
836
-
837
- /**
838
- * @param data The data for the request.
839
- * @param data.id
840
- * @param data.requestBody
841
- * @returns UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_CalculateFeesForRefundResponseDto Success
842
- * @throws ApiError
843
- */
844
- public postIntegrationApiRefundPointsByIdCalculateFees(data: PostIntegrationApiRefundPointsByIdCalculateFeesData): CancelablePromise<PostIntegrationApiRefundPointsByIdCalculateFeesResponse> {
845
- return this.httpRequest.request({
846
- method: 'POST',
847
- url: '/integration-api/refund-points/{id}/calculate-fees',
848
- path: {
849
- id: data.id
850
- },
851
- body: data.requestBody,
852
- mediaType: 'application/json',
853
- errors: {
854
- 400: 'Bad Request',
855
- 401: 'Unauthorized',
856
- 403: 'Forbidden',
857
- 404: 'Not Found',
858
- 500: 'Server Error',
859
- 501: 'Server Error'
860
- }
861
- });
862
- }
863
-
864
- /**
865
- * @param data The data for the request.
866
- * @param data.id
867
- * @param data.requestBody
868
- * @returns UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_CalculateFeesForRebateResponseDto Success
869
- * @throws ApiError
870
- */
871
- public postIntegrationApiRefundPointsByIdCalculateFeesForRebate(data: PostIntegrationApiRefundPointsByIdCalculateFeesForRebateData): CancelablePromise<PostIntegrationApiRefundPointsByIdCalculateFeesForRebateResponse> {
872
- return this.httpRequest.request({
873
- method: 'POST',
874
- url: '/integration-api/refund-points/{id}/calculate-fees-for-rebate',
875
- path: {
876
- id: data.id
877
- },
878
- body: data.requestBody,
879
- mediaType: 'application/json',
880
- errors: {
881
- 400: 'Bad Request',
882
- 401: 'Unauthorized',
883
- 403: 'Forbidden',
884
- 404: 'Not Found',
885
- 500: 'Server Error',
886
- 501: 'Server Error'
887
- }
888
- });
889
- }
890
-
891
- }
892
-
893
- export class RebateTablesService {
894
- constructor(public readonly httpRequest: BaseHttpRequest) { }
895
-
896
- /**
897
- * @param data The data for the request.
898
- * @param data.id
899
- * @returns UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto Success
900
- * @throws ApiError
901
- */
902
- public getApiContractServiceRebateTablesRebateSettingsById(data: GetApiContractServiceRebateTablesRebateSettingsByIdData): CancelablePromise<GetApiContractServiceRebateTablesRebateSettingsByIdResponse> {
903
- return this.httpRequest.request({
904
- method: 'GET',
905
- url: '/api/contract-service/rebate-tables/rebate-settings/{id}',
906
- path: {
907
- id: data.id
908
- },
909
- errors: {
910
- 400: 'Bad Request',
911
- 401: 'Unauthorized',
912
- 403: 'Forbidden',
913
- 404: 'Not Found',
914
- 500: 'Server Error',
915
- 501: 'Server Error'
916
- }
917
- });
918
- }
919
-
920
- /**
921
- * @param data The data for the request.
922
- * @param data.id
923
- * @param data.requestBody
924
- * @returns UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto Success
925
- * @throws ApiError
926
- */
927
- public putApiContractServiceRebateTablesRebateSettingsById(data: PutApiContractServiceRebateTablesRebateSettingsByIdData): CancelablePromise<PutApiContractServiceRebateTablesRebateSettingsByIdResponse> {
928
- return this.httpRequest.request({
929
- method: 'PUT',
930
- url: '/api/contract-service/rebate-tables/rebate-settings/{id}',
931
- path: {
932
- id: data.id
933
- },
934
- body: data.requestBody,
935
- mediaType: 'application/json',
936
- errors: {
937
- 400: 'Bad Request',
938
- 401: 'Unauthorized',
939
- 403: 'Forbidden',
940
- 404: 'Not Found',
941
- 500: 'Server Error',
942
- 501: 'Server Error'
943
- }
944
- });
945
- }
946
-
947
- /**
948
- * @param data The data for the request.
949
- * @param data.id
950
- * @param data.requestBody
951
- * @returns UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto Success
952
- * @throws ApiError
953
- */
954
- public postApiContractServiceRebateTablesRebateSettingsByIdRebateTableHeaders(data: PostApiContractServiceRebateTablesRebateSettingsByIdRebateTableHeadersData): CancelablePromise<PostApiContractServiceRebateTablesRebateSettingsByIdRebateTableHeadersResponse> {
955
- return this.httpRequest.request({
956
- method: 'POST',
957
- url: '/api/contract-service/rebate-tables/rebate-settings/{id}/rebate-table-headers',
958
- path: {
959
- id: data.id
960
- },
961
- body: data.requestBody,
962
- mediaType: 'application/json',
963
- errors: {
964
- 400: 'Bad Request',
965
- 401: 'Unauthorized',
966
- 403: 'Forbidden',
967
- 404: 'Not Found',
968
- 500: 'Server Error',
969
- 501: 'Server Error'
970
- }
971
- });
972
- }
973
-
974
- /**
975
- * @param data The data for the request.
976
- * @param data.id
977
- * @param data.requestBody
978
- * @returns UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionDto Success
979
- * @throws ApiError
980
- */
981
- public postApiContractServiceRebateTablesRebateSettingsByIdMinimumNetCommissions(data: PostApiContractServiceRebateTablesRebateSettingsByIdMinimumNetCommissionsData): CancelablePromise<PostApiContractServiceRebateTablesRebateSettingsByIdMinimumNetCommissionsResponse> {
982
- return this.httpRequest.request({
983
- method: 'POST',
984
- url: '/api/contract-service/rebate-tables/rebate-settings/{id}/minimum-net-commissions',
985
- path: {
986
- id: data.id
987
- },
988
- body: data.requestBody,
989
- mediaType: 'application/json',
990
- errors: {
991
- 400: 'Bad Request',
992
- 401: 'Unauthorized',
993
- 403: 'Forbidden',
994
- 404: 'Not Found',
995
- 500: 'Server Error',
996
- 501: 'Server Error'
997
- }
998
- });
999
- }
1000
-
1001
- /**
1002
- * @param data The data for the request.
1003
- * @param data.id
1004
- * @returns UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto Success
1005
- * @throws ApiError
1006
- */
1007
- public getApiContractServiceRebateTablesRebateSettingsDetailById(data: GetApiContractServiceRebateTablesRebateSettingsDetailByIdData): CancelablePromise<GetApiContractServiceRebateTablesRebateSettingsDetailByIdResponse> {
1008
- return this.httpRequest.request({
1009
- method: 'GET',
1010
- url: '/api/contract-service/rebate-tables/rebate-settings/detail/{id}',
1011
- path: {
1012
- id: data.id
1013
- },
1014
- errors: {
1015
- 400: 'Bad Request',
1016
- 401: 'Unauthorized',
1017
- 403: 'Forbidden',
1018
- 404: 'Not Found',
1019
- 500: 'Server Error',
1020
- 501: 'Server Error'
1021
- }
1022
- });
1023
- }
1024
-
1025
- /**
1026
- * @param data The data for the request.
1027
- * @param data.id
1028
- * @returns UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionDto Success
1029
- * @throws ApiError
1030
- */
1031
- public getApiContractServiceRebateTablesMinimumNetCommissionsById(data: GetApiContractServiceRebateTablesMinimumNetCommissionsByIdData): CancelablePromise<GetApiContractServiceRebateTablesMinimumNetCommissionsByIdResponse> {
1032
- return this.httpRequest.request({
1033
- method: 'GET',
1034
- url: '/api/contract-service/rebate-tables/minimum-net-commissions/{id}',
1035
- path: {
1036
- id: data.id
1037
- },
1038
- errors: {
1039
- 400: 'Bad Request',
1040
- 401: 'Unauthorized',
1041
- 403: 'Forbidden',
1042
- 404: 'Not Found',
1043
- 500: 'Server Error',
1044
- 501: 'Server Error'
1045
- }
1046
- });
1047
- }
1048
-
1049
- /**
1050
- * @param data The data for the request.
1051
- * @param data.id
1052
- * @param data.requestBody
1053
- * @returns UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionDto Success
1054
- * @throws ApiError
1055
- */
1056
- public putApiContractServiceRebateTablesMinimumNetCommissionsById(data: PutApiContractServiceRebateTablesMinimumNetCommissionsByIdData): CancelablePromise<PutApiContractServiceRebateTablesMinimumNetCommissionsByIdResponse> {
1057
- return this.httpRequest.request({
1058
- method: 'PUT',
1059
- url: '/api/contract-service/rebate-tables/minimum-net-commissions/{id}',
1060
- path: {
1061
- id: data.id
1062
- },
1063
- body: data.requestBody,
1064
- mediaType: 'application/json',
1065
- errors: {
1066
- 400: 'Bad Request',
1067
- 401: 'Unauthorized',
1068
- 403: 'Forbidden',
1069
- 404: 'Not Found',
1070
- 500: 'Server Error',
1071
- 501: 'Server Error'
1072
- }
1073
- });
1074
- }
1075
-
1076
- /**
1077
- * @param data The data for the request.
1078
- * @param data.id
1079
- * @returns unknown Success
1080
- * @throws ApiError
1081
- */
1082
- public deleteApiContractServiceRebateTablesMinimumNetCommissionsById(data: DeleteApiContractServiceRebateTablesMinimumNetCommissionsByIdData): CancelablePromise<DeleteApiContractServiceRebateTablesMinimumNetCommissionsByIdResponse> {
1083
- return this.httpRequest.request({
1084
- method: 'DELETE',
1085
- url: '/api/contract-service/rebate-tables/minimum-net-commissions/{id}',
1086
- path: {
1087
- id: data.id
1088
- },
1089
- errors: {
1090
- 400: 'Bad Request',
1091
- 401: 'Unauthorized',
1092
- 403: 'Forbidden',
1093
- 404: 'Not Found',
1094
- 500: 'Server Error',
1095
- 501: 'Server Error'
1096
- }
1097
- });
1098
- }
1099
-
1100
- /**
1101
- * @param data The data for the request.
1102
- * @param data.sorting
1103
- * @param data.skipCount
1104
- * @param data.maxResultCount
1105
- * @returns PagedResultDto_MinimumNetCommissionDto Success
1106
- * @throws ApiError
1107
- */
1108
- public getApiContractServiceRebateTablesMinimumNetCommissions(data: GetApiContractServiceRebateTablesMinimumNetCommissionsData = {}): CancelablePromise<GetApiContractServiceRebateTablesMinimumNetCommissionsResponse> {
1109
- return this.httpRequest.request({
1110
- method: 'GET',
1111
- url: '/api/contract-service/rebate-tables/minimum-net-commissions',
1112
- query: {
1113
- Sorting: data.sorting,
1114
- SkipCount: data.skipCount,
1115
- MaxResultCount: data.maxResultCount
1116
- },
1117
- errors: {
1118
- 400: 'Bad Request',
1119
- 401: 'Unauthorized',
1120
- 403: 'Forbidden',
1121
- 404: 'Not Found',
1122
- 500: 'Server Error',
1123
- 501: 'Server Error'
1124
- }
1125
- });
1126
- }
1127
-
1128
- /**
1129
- * @param data The data for the request.
1130
- * @param data.id
1131
- * @returns UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailDto Success
1132
- * @throws ApiError
1133
- */
1134
- public getApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsById(data: GetApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdData): CancelablePromise<GetApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdResponse> {
1135
- return this.httpRequest.request({
1136
- method: 'GET',
1137
- url: '/api/contract-service/rebate-tables/rebate-table-headers/processing-fee-details/{id}',
1138
- path: {
1139
- id: data.id
1140
- },
1141
- errors: {
1142
- 400: 'Bad Request',
1143
- 401: 'Unauthorized',
1144
- 403: 'Forbidden',
1145
- 404: 'Not Found',
1146
- 500: 'Server Error',
1147
- 501: 'Server Error'
1148
- }
1149
- });
1150
- }
1151
-
1152
- /**
1153
- * @param data The data for the request.
1154
- * @param data.id
1155
- * @param data.requestBody
1156
- * @returns UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailDto Success
1157
- * @throws ApiError
1158
- */
1159
- public putApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsById(data: PutApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdData): CancelablePromise<PutApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdResponse> {
1160
- return this.httpRequest.request({
1161
- method: 'PUT',
1162
- url: '/api/contract-service/rebate-tables/rebate-table-headers/processing-fee-details/{id}',
1163
- path: {
1164
- id: data.id
1165
- },
1166
- body: data.requestBody,
1167
- mediaType: 'application/json',
1168
- errors: {
1169
- 400: 'Bad Request',
1170
- 401: 'Unauthorized',
1171
- 403: 'Forbidden',
1172
- 404: 'Not Found',
1173
- 500: 'Server Error',
1174
- 501: 'Server Error'
1175
- }
1176
- });
1177
- }
1178
-
1179
- /**
1180
- * @param data The data for the request.
1181
- * @param data.id
1182
- * @returns unknown Success
1183
- * @throws ApiError
1184
- */
1185
- public deleteApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsById(data: DeleteApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdData): CancelablePromise<DeleteApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdResponse> {
1186
- return this.httpRequest.request({
1187
- method: 'DELETE',
1188
- url: '/api/contract-service/rebate-tables/rebate-table-headers/processing-fee-details/{id}',
1189
- path: {
1190
- id: data.id
1191
- },
1192
- errors: {
1193
- 400: 'Bad Request',
1194
- 401: 'Unauthorized',
1195
- 403: 'Forbidden',
1196
- 404: 'Not Found',
1197
- 500: 'Server Error',
1198
- 501: 'Server Error'
1199
- }
1200
- });
1201
- }
1202
-
1203
- /**
1204
- * @param data The data for the request.
1205
- * @param data.id
1206
- * @param data.requestBody
1207
- * @returns UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailDto Success
1208
- * @throws ApiError
1209
- */
1210
- public postApiContractServiceRebateTablesRebateTableHeadersByIdProcessingFeeDetails(data: PostApiContractServiceRebateTablesRebateTableHeadersByIdProcessingFeeDetailsData): CancelablePromise<PostApiContractServiceRebateTablesRebateTableHeadersByIdProcessingFeeDetailsResponse> {
1211
- return this.httpRequest.request({
1212
- method: 'POST',
1213
- url: '/api/contract-service/rebate-tables/rebate-table-headers/{id}/processing-fee-details',
1214
- path: {
1215
- id: data.id
1216
- },
1217
- body: data.requestBody,
1218
- mediaType: 'application/json',
1219
- errors: {
1220
- 400: 'Bad Request',
1221
- 401: 'Unauthorized',
1222
- 403: 'Forbidden',
1223
- 404: 'Not Found',
1224
- 500: 'Server Error',
1225
- 501: 'Server Error'
1226
- }
1227
- });
1228
- }
1229
-
1230
- /**
1231
- * @param data The data for the request.
1232
- * @param data.id
1233
- * @returns UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailDto Success
1234
- * @throws ApiError
1235
- */
1236
- public getApiContractServiceRebateTablesRebateTableDetailsById(data: GetApiContractServiceRebateTablesRebateTableDetailsByIdData): CancelablePromise<GetApiContractServiceRebateTablesRebateTableDetailsByIdResponse> {
1237
- return this.httpRequest.request({
1238
- method: 'GET',
1239
- url: '/api/contract-service/rebate-tables/rebate-table-details/{id}',
1240
- path: {
1241
- id: data.id
1242
- },
1243
- errors: {
1244
- 400: 'Bad Request',
1245
- 401: 'Unauthorized',
1246
- 403: 'Forbidden',
1247
- 404: 'Not Found',
1248
- 500: 'Server Error',
1249
- 501: 'Server Error'
1250
- }
1251
- });
1252
- }
1253
-
1254
- /**
1255
- * @param data The data for the request.
1256
- * @param data.id
1257
- * @param data.requestBody
1258
- * @returns UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailDto Success
1259
- * @throws ApiError
1260
- */
1261
- public putApiContractServiceRebateTablesRebateTableDetailsById(data: PutApiContractServiceRebateTablesRebateTableDetailsByIdData): CancelablePromise<PutApiContractServiceRebateTablesRebateTableDetailsByIdResponse> {
1262
- return this.httpRequest.request({
1263
- method: 'PUT',
1264
- url: '/api/contract-service/rebate-tables/rebate-table-details/{id}',
1265
- path: {
1266
- id: data.id
1267
- },
1268
- body: data.requestBody,
1269
- mediaType: 'application/json',
1270
- errors: {
1271
- 400: 'Bad Request',
1272
- 401: 'Unauthorized',
1273
- 403: 'Forbidden',
1274
- 404: 'Not Found',
1275
- 500: 'Server Error',
1276
- 501: 'Server Error'
1277
- }
1278
- });
1279
- }
1280
-
1281
- /**
1282
- * @param data The data for the request.
1283
- * @param data.id
1284
- * @returns unknown Success
1285
- * @throws ApiError
1286
- */
1287
- public deleteApiContractServiceRebateTablesRebateTableDetailsById(data: DeleteApiContractServiceRebateTablesRebateTableDetailsByIdData): CancelablePromise<DeleteApiContractServiceRebateTablesRebateTableDetailsByIdResponse> {
1288
- return this.httpRequest.request({
1289
- method: 'DELETE',
1290
- url: '/api/contract-service/rebate-tables/rebate-table-details/{id}',
1291
- path: {
1292
- id: data.id
1293
- },
1294
- errors: {
1295
- 400: 'Bad Request',
1296
- 401: 'Unauthorized',
1297
- 403: 'Forbidden',
1298
- 404: 'Not Found',
1299
- 500: 'Server Error',
1300
- 501: 'Server Error'
1301
- }
1302
- });
1303
- }
1304
-
1305
- /**
1306
- * @param data The data for the request.
1307
- * @param data.sorting
1308
- * @param data.skipCount
1309
- * @param data.maxResultCount
1310
- * @returns PagedResultDto_RebateTableDetailDto Success
1311
- * @throws ApiError
1312
- */
1313
- public getApiContractServiceRebateTablesRebateTableDetails(data: GetApiContractServiceRebateTablesRebateTableDetailsData = {}): CancelablePromise<GetApiContractServiceRebateTablesRebateTableDetailsResponse> {
1314
- return this.httpRequest.request({
1315
- method: 'GET',
1316
- url: '/api/contract-service/rebate-tables/rebate-table-details',
1317
- query: {
1318
- Sorting: data.sorting,
1319
- SkipCount: data.skipCount,
1320
- MaxResultCount: data.maxResultCount
1321
- },
1322
- errors: {
1323
- 400: 'Bad Request',
1324
- 401: 'Unauthorized',
1325
- 403: 'Forbidden',
1326
- 404: 'Not Found',
1327
- 500: 'Server Error',
1328
- 501: 'Server Error'
1329
- }
1330
- });
1331
- }
1332
-
1333
- /**
1334
- * @param data The data for the request.
1335
- * @param data.id
1336
- * @returns UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderTemplateDto Success
1337
- * @throws ApiError
1338
- */
1339
- public getApiContractServiceRebateTablesRebateTableHeadersById(data: GetApiContractServiceRebateTablesRebateTableHeadersByIdData): CancelablePromise<GetApiContractServiceRebateTablesRebateTableHeadersByIdResponse> {
1340
- return this.httpRequest.request({
1341
- method: 'GET',
1342
- url: '/api/contract-service/rebate-tables/rebate-table-headers/{id}',
1343
- path: {
1344
- id: data.id
1345
- },
1346
- errors: {
1347
- 400: 'Bad Request',
1348
- 401: 'Unauthorized',
1349
- 403: 'Forbidden',
1350
- 404: 'Not Found',
1351
- 500: 'Server Error',
1352
- 501: 'Server Error'
1353
- }
1354
- });
1355
- }
1356
-
1357
- /**
1358
- * @param data The data for the request.
1359
- * @param data.id
1360
- * @param data.requestBody
1361
- * @returns UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderTemplateDto Success
1362
- * @throws ApiError
1363
- */
1364
- public putApiContractServiceRebateTablesRebateTableHeadersById(data: PutApiContractServiceRebateTablesRebateTableHeadersByIdData): CancelablePromise<PutApiContractServiceRebateTablesRebateTableHeadersByIdResponse> {
1365
- return this.httpRequest.request({
1366
- method: 'PUT',
1367
- url: '/api/contract-service/rebate-tables/rebate-table-headers/{id}',
1368
- path: {
1369
- id: data.id
1370
- },
1371
- body: data.requestBody,
1372
- mediaType: 'application/json',
1373
- errors: {
1374
- 400: 'Bad Request',
1375
- 401: 'Unauthorized',
1376
- 403: 'Forbidden',
1377
- 404: 'Not Found',
1378
- 500: 'Server Error',
1379
- 501: 'Server Error'
1380
- }
1381
- });
1382
- }
1383
-
1384
- /**
1385
- * @param data The data for the request.
1386
- * @param data.sorting
1387
- * @param data.skipCount
1388
- * @param data.maxResultCount
1389
- * @returns PagedResultDto_RebateTableHeaderTemplateDto Success
1390
- * @throws ApiError
1391
- */
1392
- public getApiContractServiceRebateTablesRebateTableHeadersTemplates(data: GetApiContractServiceRebateTablesRebateTableHeadersTemplatesData = {}): CancelablePromise<GetApiContractServiceRebateTablesRebateTableHeadersTemplatesResponse> {
1393
- return this.httpRequest.request({
1394
- method: 'GET',
1395
- url: '/api/contract-service/rebate-tables/rebate-table-headers/templates',
1396
- query: {
1397
- Sorting: data.sorting,
1398
- SkipCount: data.skipCount,
1399
- MaxResultCount: data.maxResultCount
1400
- },
1401
- errors: {
1402
- 400: 'Bad Request',
1403
- 401: 'Unauthorized',
1404
- 403: 'Forbidden',
1405
- 404: 'Not Found',
1406
- 500: 'Server Error',
1407
- 501: 'Server Error'
1408
- }
1409
- });
1410
- }
1411
-
1412
- /**
1413
- * @param data The data for the request.
1414
- * @param data.requestBody
1415
- * @returns UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderTemplateDto Success
1416
- * @throws ApiError
1417
- */
1418
- public postApiContractServiceRebateTablesRebateTableHeadersTemplates(data: PostApiContractServiceRebateTablesRebateTableHeadersTemplatesData = {}): CancelablePromise<PostApiContractServiceRebateTablesRebateTableHeadersTemplatesResponse> {
1419
- return this.httpRequest.request({
1420
- method: 'POST',
1421
- url: '/api/contract-service/rebate-tables/rebate-table-headers/templates',
1422
- body: data.requestBody,
1423
- mediaType: 'application/json',
1424
- errors: {
1425
- 400: 'Bad Request',
1426
- 401: 'Unauthorized',
1427
- 403: 'Forbidden',
1428
- 404: 'Not Found',
1429
- 500: 'Server Error',
1430
- 501: 'Server Error'
1431
- }
1432
- });
1433
- }
1434
-
1435
- /**
1436
- * @param data The data for the request.
1437
- * @param data.id
1438
- * @param data.requestBody
1439
- * @returns UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailDto Success
1440
- * @throws ApiError
1441
- */
1442
- public postApiContractServiceRebateTablesRebateTableHeadersByIdRebateTableDetails(data: PostApiContractServiceRebateTablesRebateTableHeadersByIdRebateTableDetailsData): CancelablePromise<PostApiContractServiceRebateTablesRebateTableHeadersByIdRebateTableDetailsResponse> {
1443
- return this.httpRequest.request({
1444
- method: 'POST',
1445
- url: '/api/contract-service/rebate-tables/rebate-table-headers/{id}/rebate-table-details',
1446
- path: {
1447
- id: data.id
1448
- },
1449
- body: data.requestBody,
1450
- mediaType: 'application/json',
1451
- errors: {
1452
- 400: 'Bad Request',
1453
- 401: 'Unauthorized',
1454
- 403: 'Forbidden',
1455
- 404: 'Not Found',
1456
- 500: 'Server Error',
1457
- 501: 'Server Error'
1458
- }
1459
- });
1460
- }
1461
-
1462
- }
1463
-
1464
- export class RefundFeeHeaderIntegrationService {
1465
- constructor(public readonly httpRequest: BaseHttpRequest) { }
1466
-
1467
- /**
1468
- * @param data The data for the request.
1469
- * @param data.id
1470
- * @param data.refundFeeHeaderId
1471
- * @returns UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto Success
1472
- * @throws ApiError
1473
- */
1474
- public getIntegrationApiRefundFeeHeadersRefundPointsById(data: GetIntegrationApiRefundFeeHeadersRefundPointsByIdData): CancelablePromise<GetIntegrationApiRefundFeeHeadersRefundPointsByIdResponse> {
1475
- return this.httpRequest.request({
1476
- method: 'GET',
1477
- url: '/integration-api/refund-fee-headers/refund-points/{id}',
1478
- path: {
1479
- id: data.id
1480
- },
1481
- query: {
1482
- refundFeeHeaderId: data.refundFeeHeaderId
1483
- },
1484
- errors: {
1485
- 400: 'Bad Request',
1486
- 401: 'Unauthorized',
1487
- 403: 'Forbidden',
1488
- 404: 'Not Found',
1489
- 500: 'Server Error',
1490
- 501: 'Server Error'
1491
- }
1492
- });
1493
- }
1494
-
1495
- }
1496
-
1497
- export class RefundTableHeaderIntegrationService {
1498
- constructor(public readonly httpRequest: BaseHttpRequest) { }
1499
-
1500
- /**
1501
- * @param data The data for the request.
1502
- * @param data.id
1503
- * @param data.refundTableHeaderId
1504
- * @returns UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderForTagDto Success
1505
- * @throws ApiError
1506
- */
1507
- public getIntegrationApiRefundTableHeadersMerchantsById(data: GetIntegrationApiRefundTableHeadersMerchantsByIdData): CancelablePromise<GetIntegrationApiRefundTableHeadersMerchantsByIdResponse> {
1508
- return this.httpRequest.request({
1509
- method: 'GET',
1510
- url: '/integration-api/refund-table-headers/merchants/{id}',
1511
- path: {
1512
- id: data.id
1513
- },
1514
- query: {
1515
- refundTableHeaderId: data.refundTableHeaderId
1516
- },
1517
- errors: {
1518
- 400: 'Bad Request',
1519
- 401: 'Unauthorized',
1520
- 403: 'Forbidden',
1521
- 404: 'Not Found',
1522
- 500: 'Server Error',
1523
- 501: 'Server Error'
1524
- }
1525
- });
1526
- }
1527
-
1528
- }
1529
-
1530
- export class RefundTablesService {
1531
- constructor(public readonly httpRequest: BaseHttpRequest) { }
1532
-
1533
- /**
1534
- * @param data The data for the request.
1535
- * @param data.id
1536
- * @returns UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderDto Success
1537
- * @throws ApiError
1538
- */
1539
- public getApiContractServiceRefundTablesRefundTableHeadersById(data: GetApiContractServiceRefundTablesRefundTableHeadersByIdData): CancelablePromise<GetApiContractServiceRefundTablesRefundTableHeadersByIdResponse> {
1540
- return this.httpRequest.request({
1541
- method: 'GET',
1542
- url: '/api/contract-service/refund-tables/refund-table-headers/{id}',
1543
- path: {
1544
- id: data.id
1545
- },
1546
- errors: {
1547
- 400: 'Bad Request',
1548
- 401: 'Unauthorized',
1549
- 403: 'Forbidden',
1550
- 404: 'Not Found',
1551
- 500: 'Server Error',
1552
- 501: 'Server Error'
1553
- }
1554
- });
1555
- }
1556
-
1557
- /**
1558
- * @param data The data for the request.
1559
- * @param data.id
1560
- * @param data.requestBody
1561
- * @returns UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderDto Success
1562
- * @throws ApiError
1563
- */
1564
- public putApiContractServiceRefundTablesRefundTableHeadersById(data: PutApiContractServiceRefundTablesRefundTableHeadersByIdData): CancelablePromise<PutApiContractServiceRefundTablesRefundTableHeadersByIdResponse> {
1565
- return this.httpRequest.request({
1566
- method: 'PUT',
1567
- url: '/api/contract-service/refund-tables/refund-table-headers/{id}',
1568
- path: {
1569
- id: data.id
1570
- },
1571
- body: data.requestBody,
1572
- mediaType: 'application/json',
1573
- errors: {
1574
- 400: 'Bad Request',
1575
- 401: 'Unauthorized',
1576
- 403: 'Forbidden',
1577
- 404: 'Not Found',
1578
- 500: 'Server Error',
1579
- 501: 'Server Error'
1580
- }
1581
- });
1582
- }
1583
-
1584
- /**
1585
- * @param data The data for the request.
1586
- * @param data.id
1587
- * @returns unknown Success
1588
- * @throws ApiError
1589
- */
1590
- public deleteApiContractServiceRefundTablesRefundTableHeadersById(data: DeleteApiContractServiceRefundTablesRefundTableHeadersByIdData): CancelablePromise<DeleteApiContractServiceRefundTablesRefundTableHeadersByIdResponse> {
1591
- return this.httpRequest.request({
1592
- method: 'DELETE',
1593
- url: '/api/contract-service/refund-tables/refund-table-headers/{id}',
1594
- path: {
1595
- id: data.id
1596
- },
1597
- errors: {
1598
- 400: 'Bad Request',
1599
- 401: 'Unauthorized',
1600
- 403: 'Forbidden',
1601
- 404: 'Not Found',
1602
- 500: 'Server Error',
1603
- 501: 'Server Error'
1604
- }
1605
- });
1606
- }
1607
-
1608
- /**
1609
- * @param data The data for the request.
1610
- * @param data.skipCount
1611
- * @param data.maxResultCount
1612
- * @returns PagedResultDto_RefundTableHeaderDto Success
1613
- * @throws ApiError
1614
- */
1615
- public getApiContractServiceRefundTablesRefundTableHeaders(data: GetApiContractServiceRefundTablesRefundTableHeadersData = {}): CancelablePromise<GetApiContractServiceRefundTablesRefundTableHeadersResponse> {
1616
- return this.httpRequest.request({
1617
- method: 'GET',
1618
- url: '/api/contract-service/refund-tables/refund-table-headers',
1619
- query: {
1620
- SkipCount: data.skipCount,
1621
- MaxResultCount: data.maxResultCount
1622
- },
1623
- errors: {
1624
- 400: 'Bad Request',
1625
- 401: 'Unauthorized',
1626
- 403: 'Forbidden',
1627
- 404: 'Not Found',
1628
- 500: 'Server Error',
1629
- 501: 'Server Error'
1630
- }
1631
- });
1632
- }
1633
-
1634
- /**
1635
- * @param data The data for the request.
1636
- * @param data.requestBody
1637
- * @returns UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderDto Success
1638
- * @throws ApiError
1639
- */
1640
- public postApiContractServiceRefundTablesRefundTableHeaders(data: PostApiContractServiceRefundTablesRefundTableHeadersData = {}): CancelablePromise<PostApiContractServiceRefundTablesRefundTableHeadersResponse> {
1641
- return this.httpRequest.request({
1642
- method: 'POST',
1643
- url: '/api/contract-service/refund-tables/refund-table-headers',
1644
- body: data.requestBody,
1645
- mediaType: 'application/json',
1646
- errors: {
1647
- 400: 'Bad Request',
1648
- 401: 'Unauthorized',
1649
- 403: 'Forbidden',
1650
- 404: 'Not Found',
1651
- 500: 'Server Error',
1652
- 501: 'Server Error'
1653
- }
1654
- });
1655
- }
1656
-
1657
- /**
1658
- * @param data The data for the request.
1659
- * @param data.id
1660
- * @param data.requestBody
1661
- * @returns UniRefund_ContractService_Refunds_RefundTableDetails_RefundTableDetailDto Success
1662
- * @throws ApiError
1663
- */
1664
- public postApiContractServiceRefundTablesRefundTableHeadersByIdRefundTableDetails(data: PostApiContractServiceRefundTablesRefundTableHeadersByIdRefundTableDetailsData): CancelablePromise<PostApiContractServiceRefundTablesRefundTableHeadersByIdRefundTableDetailsResponse> {
1665
- return this.httpRequest.request({
1666
- method: 'POST',
1667
- url: '/api/contract-service/refund-tables/refund-table-headers/{id}/refund-table-details',
1668
- path: {
1669
- id: data.id
1670
- },
1671
- body: data.requestBody,
1672
- mediaType: 'application/json',
1673
- errors: {
1674
- 400: 'Bad Request',
1675
- 401: 'Unauthorized',
1676
- 403: 'Forbidden',
1677
- 404: 'Not Found',
1678
- 500: 'Server Error',
1679
- 501: 'Server Error'
1680
- }
1681
- });
1682
- }
1683
-
1684
- /**
1685
- * @param data The data for the request.
1686
- * @param data.id
1687
- * @returns unknown Success
1688
- * @throws ApiError
1689
- */
1690
- public deleteApiContractServiceRefundTablesRefundTableDetailsById(data: DeleteApiContractServiceRefundTablesRefundTableDetailsByIdData): CancelablePromise<DeleteApiContractServiceRefundTablesRefundTableDetailsByIdResponse> {
1691
- return this.httpRequest.request({
1692
- method: 'DELETE',
1693
- url: '/api/contract-service/refund-tables/refund-table-details/{id}',
1694
- path: {
1695
- id: data.id
1696
- },
1697
- errors: {
1698
- 400: 'Bad Request',
1699
- 401: 'Unauthorized',
1700
- 403: 'Forbidden',
1701
- 404: 'Not Found',
1702
- 500: 'Server Error',
1703
- 501: 'Server Error'
1704
- }
1705
- });
1706
- }
1707
-
1708
- /**
1709
- * @param data The data for the request.
1710
- * @param data.skipCount
1711
- * @param data.maxResultCount
1712
- * @returns PagedResultDto_RefundFeeHeaderDto Success
1713
- * @throws ApiError
1714
- */
1715
- public getApiContractServiceRefundTablesRefundFeeHeaders(data: GetApiContractServiceRefundTablesRefundFeeHeadersData = {}): CancelablePromise<GetApiContractServiceRefundTablesRefundFeeHeadersResponse> {
1716
- return this.httpRequest.request({
1717
- method: 'GET',
1718
- url: '/api/contract-service/refund-tables/refund-fee-headers',
1719
- query: {
1720
- SkipCount: data.skipCount,
1721
- MaxResultCount: data.maxResultCount
1722
- },
1723
- errors: {
1724
- 400: 'Bad Request',
1725
- 401: 'Unauthorized',
1726
- 403: 'Forbidden',
1727
- 404: 'Not Found',
1728
- 500: 'Server Error',
1729
- 501: 'Server Error'
1730
- }
1731
- });
1732
- }
1733
-
1734
- /**
1735
- * @param data The data for the request.
1736
- * @param data.requestBody
1737
- * @returns UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto Success
1738
- * @throws ApiError
1739
- */
1740
- public postApiContractServiceRefundTablesRefundFeeHeaders(data: PostApiContractServiceRefundTablesRefundFeeHeadersData = {}): CancelablePromise<PostApiContractServiceRefundTablesRefundFeeHeadersResponse> {
1741
- return this.httpRequest.request({
1742
- method: 'POST',
1743
- url: '/api/contract-service/refund-tables/refund-fee-headers',
1744
- body: data.requestBody,
1745
- mediaType: 'application/json',
1746
- errors: {
1747
- 400: 'Bad Request',
1748
- 401: 'Unauthorized',
1749
- 403: 'Forbidden',
1750
- 404: 'Not Found',
1751
- 500: 'Server Error',
1752
- 501: 'Server Error'
1753
- }
1754
- });
1755
- }
1756
-
1757
- /**
1758
- * @param data The data for the request.
1759
- * @param data.id
1760
- * @returns UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto Success
1761
- * @throws ApiError
1762
- */
1763
- public getApiContractServiceRefundTablesRefundFeeHeadersById(data: GetApiContractServiceRefundTablesRefundFeeHeadersByIdData): CancelablePromise<GetApiContractServiceRefundTablesRefundFeeHeadersByIdResponse> {
1764
- return this.httpRequest.request({
1765
- method: 'GET',
1766
- url: '/api/contract-service/refund-tables/refund-fee-headers/{id}',
1767
- path: {
1768
- id: data.id
1769
- },
1770
- errors: {
1771
- 400: 'Bad Request',
1772
- 401: 'Unauthorized',
1773
- 403: 'Forbidden',
1774
- 404: 'Not Found',
1775
- 500: 'Server Error',
1776
- 501: 'Server Error'
1777
- }
1778
- });
1779
- }
1780
-
1781
- /**
1782
- * @param data The data for the request.
1783
- * @param data.id
1784
- * @param data.requestBody
1785
- * @returns UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto Success
1786
- * @throws ApiError
1787
- */
1788
- public putApiContractServiceRefundTablesRefundFeeHeadersById(data: PutApiContractServiceRefundTablesRefundFeeHeadersByIdData): CancelablePromise<PutApiContractServiceRefundTablesRefundFeeHeadersByIdResponse> {
1789
- return this.httpRequest.request({
1790
- method: 'PUT',
1791
- url: '/api/contract-service/refund-tables/refund-fee-headers/{id}',
1792
- path: {
1793
- id: data.id
1794
- },
1795
- body: data.requestBody,
1796
- mediaType: 'application/json',
1797
- errors: {
1798
- 400: 'Bad Request',
1799
- 401: 'Unauthorized',
1800
- 403: 'Forbidden',
1801
- 404: 'Not Found',
1802
- 500: 'Server Error',
1803
- 501: 'Server Error'
1804
- }
1805
- });
1806
- }
1807
-
1808
- /**
1809
- * @param data The data for the request.
1810
- * @param data.id
1811
- * @returns unknown Success
1812
- * @throws ApiError
1813
- */
1814
- public deleteApiContractServiceRefundTablesRefundFeeHeadersById(data: DeleteApiContractServiceRefundTablesRefundFeeHeadersByIdData): CancelablePromise<DeleteApiContractServiceRefundTablesRefundFeeHeadersByIdResponse> {
1815
- return this.httpRequest.request({
1816
- method: 'DELETE',
1817
- url: '/api/contract-service/refund-tables/refund-fee-headers/{id}',
1818
- path: {
1819
- id: data.id
1820
- },
1821
- errors: {
1822
- 400: 'Bad Request',
1823
- 401: 'Unauthorized',
1824
- 403: 'Forbidden',
1825
- 404: 'Not Found',
1826
- 500: 'Server Error',
1827
- 501: 'Server Error'
1828
- }
1829
- });
1830
- }
1831
-
1832
- /**
1833
- * @param data The data for the request.
1834
- * @param data.id
1835
- * @param data.requestBody
1836
- * @returns UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailDto Success
1837
- * @throws ApiError
1838
- */
1839
- public postApiContractServiceRefundTablesRefundFeeHeadersByIdRefundFeeDetails(data: PostApiContractServiceRefundTablesRefundFeeHeadersByIdRefundFeeDetailsData): CancelablePromise<PostApiContractServiceRefundTablesRefundFeeHeadersByIdRefundFeeDetailsResponse> {
1840
- return this.httpRequest.request({
1841
- method: 'POST',
1842
- url: '/api/contract-service/refund-tables/refund-fee-headers/{id}/refund-fee-details',
1843
- path: {
1844
- id: data.id
1845
- },
1846
- body: data.requestBody,
1847
- mediaType: 'application/json',
1848
- errors: {
1849
- 400: 'Bad Request',
1850
- 401: 'Unauthorized',
1851
- 403: 'Forbidden',
1852
- 404: 'Not Found',
1853
- 500: 'Server Error',
1854
- 501: 'Server Error'
1855
- }
1856
- });
1857
- }
1858
-
1859
- /**
1860
- * @param data The data for the request.
1861
- * @param data.id
1862
- * @returns unknown Success
1863
- * @throws ApiError
1864
- */
1865
- public deleteApiContractServiceRefundTablesRefundFeeDetailsById(data: DeleteApiContractServiceRefundTablesRefundFeeDetailsByIdData): CancelablePromise<DeleteApiContractServiceRefundTablesRefundFeeDetailsByIdResponse> {
1866
- return this.httpRequest.request({
1867
- method: 'DELETE',
1868
- url: '/api/contract-service/refund-tables/refund-fee-details/{id}',
1869
- path: {
1870
- id: data.id
1871
- },
1872
- errors: {
1873
- 400: 'Bad Request',
1874
- 401: 'Unauthorized',
1875
- 403: 'Forbidden',
1876
- 404: 'Not Found',
1877
- 500: 'Server Error',
1878
- 501: 'Server Error'
1879
- }
1880
- });
1881
- }
1882
-
1
+ // This file is auto-generated by @hey-api/openapi-ts
2
+
3
+ import type { CancelablePromise } from './core/CancelablePromise';
4
+ import type { BaseHttpRequest } from './core/BaseHttpRequest';
5
+ import type { GetApiAbpApiDefinitionData, GetApiAbpApiDefinitionResponse, GetApiAbpApplicationConfigurationData, GetApiAbpApplicationConfigurationResponse, GetApiAbpApplicationLocalizationData, GetApiAbpApplicationLocalizationResponse, PostApiContractServiceMerchantsContractsContractHeadersByIdValidateData, PostApiContractServiceMerchantsContractsContractHeadersByIdValidateResponse, GetApiContractServiceMerchantsContractsContractSettingsByIdData, GetApiContractServiceMerchantsContractsContractSettingsByIdResponse, PutApiContractServiceMerchantsContractsContractSettingsByIdData, PutApiContractServiceMerchantsContractsContractSettingsByIdResponse, DeleteApiContractServiceMerchantsContractsContractSettingsByIdData, DeleteApiContractServiceMerchantsContractsContractSettingsByIdResponse, GetApiContractServiceMerchantsContractsContractHeadersByIdContractSettingsData, GetApiContractServiceMerchantsContractsContractHeadersByIdContractSettingsResponse, PostApiContractServiceMerchantsContractsContractHeadersByIdContractSettingsData, PostApiContractServiceMerchantsContractsContractHeadersByIdContractSettingsResponse, GetApiContractServiceMerchantsContractsContractHeadersByIdContractStoresData, GetApiContractServiceMerchantsContractsContractHeadersByIdContractStoresResponse, PostApiContractServiceMerchantsContractsContractHeadersByIdContractStoresData, PostApiContractServiceMerchantsContractsContractHeadersByIdContractStoresResponse, GetApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsData, GetApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsResponse, PostApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsData, PostApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsResponse, PutApiContractServiceMerchantsContractsContractHeadersByIdSetDefaultSettingData, PutApiContractServiceMerchantsContractsContractHeadersByIdSetDefaultSettingResponse, PostApiContractServiceMerchantsByIdContractsContractHeadersData, PostApiContractServiceMerchantsByIdContractsContractHeadersResponse, GetApiContractServiceMerchantsByIdContractsContractHeadersData, GetApiContractServiceMerchantsByIdContractsContractHeadersResponse, DeleteApiContractServiceMerchantsContractsContractHeadersByIdData, DeleteApiContractServiceMerchantsContractsContractHeadersByIdResponse, GetApiContractServiceMerchantsContractsContractHeadersByIdData, GetApiContractServiceMerchantsContractsContractHeadersByIdResponse, PutApiContractServiceMerchantsContractsContractHeadersByIdData, PutApiContractServiceMerchantsContractsContractHeadersByIdResponse, GetApiContractServiceMerchantsContractsContractHeadersData, GetApiContractServiceMerchantsContractsContractHeadersResponse, GetApiContractServiceMerchantsContractsContractHeadersByIdGetMissingStepsData, GetApiContractServiceMerchantsContractsContractHeadersByIdGetMissingStepsResponse, GetIntegrationApiMerchantsForVatStatementData, GetIntegrationApiMerchantsForVatStatementResponse, PostApiContractServiceRefundPointsByIdContractsContractHeadersData, PostApiContractServiceRefundPointsByIdContractsContractHeadersResponse, GetApiContractServiceRefundPointsByIdContractsContractHeadersData, GetApiContractServiceRefundPointsByIdContractsContractHeadersResponse, DeleteApiContractServiceRefundPointsContractsContractHeadersByIdData, DeleteApiContractServiceRefundPointsContractsContractHeadersByIdResponse, GetApiContractServiceRefundPointsContractsContractHeadersByIdData, GetApiContractServiceRefundPointsContractsContractHeadersByIdResponse, PutApiContractServiceRefundPointsContractsContractHeadersByIdData, PutApiContractServiceRefundPointsContractsContractHeadersByIdResponse, GetApiContractServiceRefundPointsContractsContractHeadersData, GetApiContractServiceRefundPointsContractsContractHeadersResponse, GetApiContractServiceRefundPointsContractsContractHeadersByIdGetMissingStepsData, GetApiContractServiceRefundPointsContractsContractHeadersByIdGetMissingStepsResponse, PostApiContractServiceRefundPointsContractsContractHeadersByIdValidateData, PostApiContractServiceRefundPointsContractsContractHeadersByIdValidateResponse, PostIntegrationApiRefundPointsByIdCalculateFeesData, PostIntegrationApiRefundPointsByIdCalculateFeesResponse, PostIntegrationApiRefundPointsByIdCalculateFeesForRebateData, PostIntegrationApiRefundPointsByIdCalculateFeesForRebateResponse, GetApiContractServiceRebateTablesRebateSettingsByIdData, GetApiContractServiceRebateTablesRebateSettingsByIdResponse, PutApiContractServiceRebateTablesRebateSettingsByIdData, PutApiContractServiceRebateTablesRebateSettingsByIdResponse, PostApiContractServiceRebateTablesRebateSettingsByIdRebateTableHeadersData, PostApiContractServiceRebateTablesRebateSettingsByIdRebateTableHeadersResponse, PostApiContractServiceRebateTablesRebateSettingsByIdMinimumNetCommissionsData, PostApiContractServiceRebateTablesRebateSettingsByIdMinimumNetCommissionsResponse, GetApiContractServiceRebateTablesRebateSettingsDetailByIdData, GetApiContractServiceRebateTablesRebateSettingsDetailByIdResponse, GetApiContractServiceRebateTablesMinimumNetCommissionsByIdData, GetApiContractServiceRebateTablesMinimumNetCommissionsByIdResponse, PutApiContractServiceRebateTablesMinimumNetCommissionsByIdData, PutApiContractServiceRebateTablesMinimumNetCommissionsByIdResponse, DeleteApiContractServiceRebateTablesMinimumNetCommissionsByIdData, DeleteApiContractServiceRebateTablesMinimumNetCommissionsByIdResponse, GetApiContractServiceRebateTablesMinimumNetCommissionsData, GetApiContractServiceRebateTablesMinimumNetCommissionsResponse, GetApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdData, GetApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdResponse, PutApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdData, PutApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdResponse, DeleteApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdData, DeleteApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdResponse, PostApiContractServiceRebateTablesRebateTableHeadersByIdProcessingFeeDetailsData, PostApiContractServiceRebateTablesRebateTableHeadersByIdProcessingFeeDetailsResponse, GetApiContractServiceRebateTablesRebateTableDetailsByIdData, GetApiContractServiceRebateTablesRebateTableDetailsByIdResponse, PutApiContractServiceRebateTablesRebateTableDetailsByIdData, PutApiContractServiceRebateTablesRebateTableDetailsByIdResponse, DeleteApiContractServiceRebateTablesRebateTableDetailsByIdData, DeleteApiContractServiceRebateTablesRebateTableDetailsByIdResponse, GetApiContractServiceRebateTablesRebateTableDetailsData, GetApiContractServiceRebateTablesRebateTableDetailsResponse, GetApiContractServiceRebateTablesRebateTableHeadersByIdData, GetApiContractServiceRebateTablesRebateTableHeadersByIdResponse, PutApiContractServiceRebateTablesRebateTableHeadersByIdData, PutApiContractServiceRebateTablesRebateTableHeadersByIdResponse, GetApiContractServiceRebateTablesRebateTableHeadersTemplatesData, GetApiContractServiceRebateTablesRebateTableHeadersTemplatesResponse, PostApiContractServiceRebateTablesRebateTableHeadersTemplatesData, PostApiContractServiceRebateTablesRebateTableHeadersTemplatesResponse, PostApiContractServiceRebateTablesRebateTableHeadersByIdRebateTableDetailsData, PostApiContractServiceRebateTablesRebateTableHeadersByIdRebateTableDetailsResponse, GetIntegrationApiRefundFeeHeadersRefundPointsByIdData, GetIntegrationApiRefundFeeHeadersRefundPointsByIdResponse, GetIntegrationApiRefundTableHeadersMerchantsByIdData, GetIntegrationApiRefundTableHeadersMerchantsByIdResponse, GetApiContractServiceRefundTablesRefundTableHeadersByIdData, GetApiContractServiceRefundTablesRefundTableHeadersByIdResponse, PutApiContractServiceRefundTablesRefundTableHeadersByIdData, PutApiContractServiceRefundTablesRefundTableHeadersByIdResponse, DeleteApiContractServiceRefundTablesRefundTableHeadersByIdData, DeleteApiContractServiceRefundTablesRefundTableHeadersByIdResponse, GetApiContractServiceRefundTablesRefundTableHeadersData, GetApiContractServiceRefundTablesRefundTableHeadersResponse, PostApiContractServiceRefundTablesRefundTableHeadersData, PostApiContractServiceRefundTablesRefundTableHeadersResponse, PostApiContractServiceRefundTablesRefundTableHeadersByIdRefundTableDetailsData, PostApiContractServiceRefundTablesRefundTableHeadersByIdRefundTableDetailsResponse, DeleteApiContractServiceRefundTablesRefundTableDetailsByIdData, DeleteApiContractServiceRefundTablesRefundTableDetailsByIdResponse, GetApiContractServiceRefundTablesRefundFeeHeadersData, GetApiContractServiceRefundTablesRefundFeeHeadersResponse, PostApiContractServiceRefundTablesRefundFeeHeadersData, PostApiContractServiceRefundTablesRefundFeeHeadersResponse, GetApiContractServiceRefundTablesRefundFeeHeadersByIdData, GetApiContractServiceRefundTablesRefundFeeHeadersByIdResponse, PutApiContractServiceRefundTablesRefundFeeHeadersByIdData, PutApiContractServiceRefundTablesRefundFeeHeadersByIdResponse, DeleteApiContractServiceRefundTablesRefundFeeHeadersByIdData, DeleteApiContractServiceRefundTablesRefundFeeHeadersByIdResponse, PostApiContractServiceRefundTablesRefundFeeHeadersByIdRefundFeeDetailsData, PostApiContractServiceRefundTablesRefundFeeHeadersByIdRefundFeeDetailsResponse, DeleteApiContractServiceRefundTablesRefundFeeDetailsByIdData, DeleteApiContractServiceRefundTablesRefundFeeDetailsByIdResponse } from './types.gen';
6
+
7
+ export class AbpApiDefinitionService {
8
+ constructor(public readonly httpRequest: BaseHttpRequest) { }
9
+
10
+ /**
11
+ * @param data The data for the request.
12
+ * @param data.includeTypes
13
+ * @returns Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel Success
14
+ * @throws ApiError
15
+ */
16
+ public getApiAbpApiDefinition(data: GetApiAbpApiDefinitionData = {}): CancelablePromise<GetApiAbpApiDefinitionResponse> {
17
+ return this.httpRequest.request({
18
+ method: 'GET',
19
+ url: '/api/abp/api-definition',
20
+ query: {
21
+ IncludeTypes: data.includeTypes
22
+ },
23
+ errors: {
24
+ 400: 'Bad Request',
25
+ 401: 'Unauthorized',
26
+ 403: 'Forbidden',
27
+ 404: 'Not Found',
28
+ 500: 'Server Error',
29
+ 501: 'Server Error'
30
+ }
31
+ });
32
+ }
33
+
34
+ }
35
+
36
+ export class AbpApplicationConfigurationService {
37
+ constructor(public readonly httpRequest: BaseHttpRequest) { }
38
+
39
+ /**
40
+ * @param data The data for the request.
41
+ * @param data.includeLocalizationResources
42
+ * @returns Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto Success
43
+ * @throws ApiError
44
+ */
45
+ public getApiAbpApplicationConfiguration(data: GetApiAbpApplicationConfigurationData = {}): CancelablePromise<GetApiAbpApplicationConfigurationResponse> {
46
+ return this.httpRequest.request({
47
+ method: 'GET',
48
+ url: '/api/abp/application-configuration',
49
+ query: {
50
+ IncludeLocalizationResources: data.includeLocalizationResources
51
+ },
52
+ errors: {
53
+ 400: 'Bad Request',
54
+ 401: 'Unauthorized',
55
+ 403: 'Forbidden',
56
+ 404: 'Not Found',
57
+ 500: 'Server Error',
58
+ 501: 'Server Error'
59
+ }
60
+ });
61
+ }
62
+
63
+ }
64
+
65
+ export class AbpApplicationLocalizationService {
66
+ constructor(public readonly httpRequest: BaseHttpRequest) { }
67
+
68
+ /**
69
+ * @param data The data for the request.
70
+ * @param data.cultureName
71
+ * @param data.onlyDynamics
72
+ * @returns Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto Success
73
+ * @throws ApiError
74
+ */
75
+ public getApiAbpApplicationLocalization(data: GetApiAbpApplicationLocalizationData): CancelablePromise<GetApiAbpApplicationLocalizationResponse> {
76
+ return this.httpRequest.request({
77
+ method: 'GET',
78
+ url: '/api/abp/application-localization',
79
+ query: {
80
+ CultureName: data.cultureName,
81
+ OnlyDynamics: data.onlyDynamics
82
+ },
83
+ errors: {
84
+ 400: 'Bad Request',
85
+ 401: 'Unauthorized',
86
+ 403: 'Forbidden',
87
+ 404: 'Not Found',
88
+ 500: 'Server Error',
89
+ 501: 'Server Error'
90
+ }
91
+ });
92
+ }
93
+
94
+ }
95
+
96
+ export class ContractsMerchantService {
97
+ constructor(public readonly httpRequest: BaseHttpRequest) { }
98
+
99
+ /**
100
+ * @param data The data for the request.
101
+ * @param data.id
102
+ * @returns boolean Success
103
+ * @throws ApiError
104
+ */
105
+ public postApiContractServiceMerchantsContractsContractHeadersByIdValidate(data: PostApiContractServiceMerchantsContractsContractHeadersByIdValidateData): CancelablePromise<PostApiContractServiceMerchantsContractsContractHeadersByIdValidateResponse> {
106
+ return this.httpRequest.request({
107
+ method: 'POST',
108
+ url: '/api/contract-service/merchants/contracts/contract-headers/{id}/validate',
109
+ path: {
110
+ id: data.id
111
+ },
112
+ errors: {
113
+ 400: 'Bad Request',
114
+ 401: 'Unauthorized',
115
+ 403: 'Forbidden',
116
+ 404: 'Not Found',
117
+ 500: 'Server Error',
118
+ 501: 'Server Error'
119
+ }
120
+ });
121
+ }
122
+
123
+ /**
124
+ * @param data The data for the request.
125
+ * @param data.id
126
+ * @returns UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingDto Success
127
+ * @throws ApiError
128
+ */
129
+ public getApiContractServiceMerchantsContractsContractSettingsById(data: GetApiContractServiceMerchantsContractsContractSettingsByIdData): CancelablePromise<GetApiContractServiceMerchantsContractsContractSettingsByIdResponse> {
130
+ return this.httpRequest.request({
131
+ method: 'GET',
132
+ url: '/api/contract-service/merchants/contracts/contract-settings/{id}',
133
+ path: {
134
+ id: data.id
135
+ },
136
+ errors: {
137
+ 400: 'Bad Request',
138
+ 401: 'Unauthorized',
139
+ 403: 'Forbidden',
140
+ 404: 'Not Found',
141
+ 500: 'Server Error',
142
+ 501: 'Server Error'
143
+ }
144
+ });
145
+ }
146
+
147
+ /**
148
+ * @param data The data for the request.
149
+ * @param data.id
150
+ * @param data.requestBody
151
+ * @returns UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingDto Success
152
+ * @throws ApiError
153
+ */
154
+ public putApiContractServiceMerchantsContractsContractSettingsById(data: PutApiContractServiceMerchantsContractsContractSettingsByIdData): CancelablePromise<PutApiContractServiceMerchantsContractsContractSettingsByIdResponse> {
155
+ return this.httpRequest.request({
156
+ method: 'PUT',
157
+ url: '/api/contract-service/merchants/contracts/contract-settings/{id}',
158
+ path: {
159
+ id: data.id
160
+ },
161
+ body: data.requestBody,
162
+ mediaType: 'application/json',
163
+ errors: {
164
+ 400: 'Bad Request',
165
+ 401: 'Unauthorized',
166
+ 403: 'Forbidden',
167
+ 404: 'Not Found',
168
+ 500: 'Server Error',
169
+ 501: 'Server Error'
170
+ }
171
+ });
172
+ }
173
+
174
+ /**
175
+ * @param data The data for the request.
176
+ * @param data.id
177
+ * @returns unknown Success
178
+ * @throws ApiError
179
+ */
180
+ public deleteApiContractServiceMerchantsContractsContractSettingsById(data: DeleteApiContractServiceMerchantsContractsContractSettingsByIdData): CancelablePromise<DeleteApiContractServiceMerchantsContractsContractSettingsByIdResponse> {
181
+ return this.httpRequest.request({
182
+ method: 'DELETE',
183
+ url: '/api/contract-service/merchants/contracts/contract-settings/{id}',
184
+ path: {
185
+ id: data.id
186
+ },
187
+ errors: {
188
+ 400: 'Bad Request',
189
+ 401: 'Unauthorized',
190
+ 403: 'Forbidden',
191
+ 404: 'Not Found',
192
+ 500: 'Server Error',
193
+ 501: 'Server Error'
194
+ }
195
+ });
196
+ }
197
+
198
+ /**
199
+ * @param data The data for the request.
200
+ * @param data.id
201
+ * @param data.sorting
202
+ * @param data.skipCount
203
+ * @param data.maxResultCount
204
+ * @returns PagedResultDto_ContractSettingDto Success
205
+ * @throws ApiError
206
+ */
207
+ public getApiContractServiceMerchantsContractsContractHeadersByIdContractSettings(data: GetApiContractServiceMerchantsContractsContractHeadersByIdContractSettingsData): CancelablePromise<GetApiContractServiceMerchantsContractsContractHeadersByIdContractSettingsResponse> {
208
+ return this.httpRequest.request({
209
+ method: 'GET',
210
+ url: '/api/contract-service/merchants/contracts/contract-headers/{id}/contract-settings',
211
+ path: {
212
+ id: data.id
213
+ },
214
+ query: {
215
+ Sorting: data.sorting,
216
+ SkipCount: data.skipCount,
217
+ MaxResultCount: data.maxResultCount
218
+ },
219
+ errors: {
220
+ 400: 'Bad Request',
221
+ 401: 'Unauthorized',
222
+ 403: 'Forbidden',
223
+ 404: 'Not Found',
224
+ 500: 'Server Error',
225
+ 501: 'Server Error'
226
+ }
227
+ });
228
+ }
229
+
230
+ /**
231
+ * @param data The data for the request.
232
+ * @param data.id
233
+ * @param data.requestBody
234
+ * @returns UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingDto Success
235
+ * @throws ApiError
236
+ */
237
+ public postApiContractServiceMerchantsContractsContractHeadersByIdContractSettings(data: PostApiContractServiceMerchantsContractsContractHeadersByIdContractSettingsData): CancelablePromise<PostApiContractServiceMerchantsContractsContractHeadersByIdContractSettingsResponse> {
238
+ return this.httpRequest.request({
239
+ method: 'POST',
240
+ url: '/api/contract-service/merchants/contracts/contract-headers/{id}/contract-settings',
241
+ path: {
242
+ id: data.id
243
+ },
244
+ body: data.requestBody,
245
+ mediaType: 'application/json',
246
+ errors: {
247
+ 400: 'Bad Request',
248
+ 401: 'Unauthorized',
249
+ 403: 'Forbidden',
250
+ 404: 'Not Found',
251
+ 500: 'Server Error',
252
+ 501: 'Server Error'
253
+ }
254
+ });
255
+ }
256
+
257
+ /**
258
+ * @param data The data for the request.
259
+ * @param data.id
260
+ * @param data.sorting
261
+ * @param data.skipCount
262
+ * @param data.maxResultCount
263
+ * @returns PagedResultDto_ContractStoreDetailedDto Success
264
+ * @throws ApiError
265
+ */
266
+ public getApiContractServiceMerchantsContractsContractHeadersByIdContractStores(data: GetApiContractServiceMerchantsContractsContractHeadersByIdContractStoresData): CancelablePromise<GetApiContractServiceMerchantsContractsContractHeadersByIdContractStoresResponse> {
267
+ return this.httpRequest.request({
268
+ method: 'GET',
269
+ url: '/api/contract-service/merchants/contracts/contract-headers/{id}/contract-stores',
270
+ path: {
271
+ id: data.id
272
+ },
273
+ query: {
274
+ Sorting: data.sorting,
275
+ SkipCount: data.skipCount,
276
+ MaxResultCount: data.maxResultCount
277
+ },
278
+ errors: {
279
+ 400: 'Bad Request',
280
+ 401: 'Unauthorized',
281
+ 403: 'Forbidden',
282
+ 404: 'Not Found',
283
+ 500: 'Server Error',
284
+ 501: 'Server Error'
285
+ }
286
+ });
287
+ }
288
+
289
+ /**
290
+ * @param data The data for the request.
291
+ * @param data.id
292
+ * @param data.requestBody
293
+ * @returns UniRefund_ContractService_ContractsForMerchant_ContractStores_ContractStoreDto Success
294
+ * @throws ApiError
295
+ */
296
+ public postApiContractServiceMerchantsContractsContractHeadersByIdContractStores(data: PostApiContractServiceMerchantsContractsContractHeadersByIdContractStoresData): CancelablePromise<PostApiContractServiceMerchantsContractsContractHeadersByIdContractStoresResponse> {
297
+ return this.httpRequest.request({
298
+ method: 'POST',
299
+ url: '/api/contract-service/merchants/contracts/contract-headers/{id}/contract-stores',
300
+ path: {
301
+ id: data.id
302
+ },
303
+ body: data.requestBody,
304
+ mediaType: 'application/json',
305
+ errors: {
306
+ 400: 'Bad Request',
307
+ 401: 'Unauthorized',
308
+ 403: 'Forbidden',
309
+ 404: 'Not Found',
310
+ 500: 'Server Error',
311
+ 501: 'Server Error'
312
+ }
313
+ });
314
+ }
315
+
316
+ /**
317
+ * @param data The data for the request.
318
+ * @param data.id
319
+ * @returns UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto Success
320
+ * @throws ApiError
321
+ */
322
+ public getApiContractServiceMerchantsContractsContractHeadersByIdRebateSettings(data: GetApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsData): CancelablePromise<GetApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsResponse> {
323
+ return this.httpRequest.request({
324
+ method: 'GET',
325
+ url: '/api/contract-service/merchants/contracts/contract-headers/{id}/rebate-settings',
326
+ path: {
327
+ id: data.id
328
+ },
329
+ errors: {
330
+ 400: 'Bad Request',
331
+ 401: 'Unauthorized',
332
+ 403: 'Forbidden',
333
+ 404: 'Not Found',
334
+ 500: 'Server Error',
335
+ 501: 'Server Error'
336
+ }
337
+ });
338
+ }
339
+
340
+ /**
341
+ * @param data The data for the request.
342
+ * @param data.id
343
+ * @param data.requestBody
344
+ * @returns UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto Success
345
+ * @throws ApiError
346
+ */
347
+ public postApiContractServiceMerchantsContractsContractHeadersByIdRebateSettings(data: PostApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsData): CancelablePromise<PostApiContractServiceMerchantsContractsContractHeadersByIdRebateSettingsResponse> {
348
+ return this.httpRequest.request({
349
+ method: 'POST',
350
+ url: '/api/contract-service/merchants/contracts/contract-headers/{id}/rebate-settings',
351
+ path: {
352
+ id: data.id
353
+ },
354
+ body: data.requestBody,
355
+ mediaType: 'application/json',
356
+ errors: {
357
+ 400: 'Bad Request',
358
+ 401: 'Unauthorized',
359
+ 403: 'Forbidden',
360
+ 404: 'Not Found',
361
+ 500: 'Server Error',
362
+ 501: 'Server Error'
363
+ }
364
+ });
365
+ }
366
+
367
+ /**
368
+ * @param data The data for the request.
369
+ * @param data.id
370
+ * @param data.requestBody
371
+ * @returns UniRefund_ContractService_ContractsForMerchant_ContractSettings_ContractSettingDto Success
372
+ * @throws ApiError
373
+ */
374
+ public putApiContractServiceMerchantsContractsContractHeadersByIdSetDefaultSetting(data: PutApiContractServiceMerchantsContractsContractHeadersByIdSetDefaultSettingData): CancelablePromise<PutApiContractServiceMerchantsContractsContractHeadersByIdSetDefaultSettingResponse> {
375
+ return this.httpRequest.request({
376
+ method: 'PUT',
377
+ url: '/api/contract-service/merchants/contracts/contract-headers/{id}/set-default-setting',
378
+ path: {
379
+ id: data.id
380
+ },
381
+ body: data.requestBody,
382
+ mediaType: 'application/json',
383
+ errors: {
384
+ 400: 'Bad Request',
385
+ 401: 'Unauthorized',
386
+ 403: 'Forbidden',
387
+ 404: 'Not Found',
388
+ 500: 'Server Error',
389
+ 501: 'Server Error'
390
+ }
391
+ });
392
+ }
393
+
394
+ /**
395
+ * @param data The data for the request.
396
+ * @param data.id
397
+ * @param data.requestBody
398
+ * @returns UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderForMerchantDto Success
399
+ * @throws ApiError
400
+ */
401
+ public postApiContractServiceMerchantsByIdContractsContractHeaders(data: PostApiContractServiceMerchantsByIdContractsContractHeadersData): CancelablePromise<PostApiContractServiceMerchantsByIdContractsContractHeadersResponse> {
402
+ return this.httpRequest.request({
403
+ method: 'POST',
404
+ url: '/api/contract-service/merchants/{id}/contracts/contract-headers',
405
+ path: {
406
+ id: data.id
407
+ },
408
+ body: data.requestBody,
409
+ mediaType: 'application/json',
410
+ errors: {
411
+ 400: 'Bad Request',
412
+ 401: 'Unauthorized',
413
+ 403: 'Forbidden',
414
+ 404: 'Not Found',
415
+ 500: 'Server Error',
416
+ 501: 'Server Error'
417
+ }
418
+ });
419
+ }
420
+
421
+ /**
422
+ * @param data The data for the request.
423
+ * @param data.id
424
+ * @param data.isDraft
425
+ * @param data.sorting
426
+ * @param data.skipCount
427
+ * @param data.maxResultCount
428
+ * @returns PagedResultDto_ContractHeaderDetailForMerchantDto Success
429
+ * @throws ApiError
430
+ */
431
+ public getApiContractServiceMerchantsByIdContractsContractHeaders(data: GetApiContractServiceMerchantsByIdContractsContractHeadersData): CancelablePromise<GetApiContractServiceMerchantsByIdContractsContractHeadersResponse> {
432
+ return this.httpRequest.request({
433
+ method: 'GET',
434
+ url: '/api/contract-service/merchants/{id}/contracts/contract-headers',
435
+ path: {
436
+ id: data.id
437
+ },
438
+ query: {
439
+ IsDraft: data.isDraft,
440
+ Sorting: data.sorting,
441
+ SkipCount: data.skipCount,
442
+ MaxResultCount: data.maxResultCount
443
+ },
444
+ errors: {
445
+ 400: 'Bad Request',
446
+ 401: 'Unauthorized',
447
+ 403: 'Forbidden',
448
+ 404: 'Not Found',
449
+ 500: 'Server Error',
450
+ 501: 'Server Error'
451
+ }
452
+ });
453
+ }
454
+
455
+ /**
456
+ * @param data The data for the request.
457
+ * @param data.id
458
+ * @returns unknown Success
459
+ * @throws ApiError
460
+ */
461
+ public deleteApiContractServiceMerchantsContractsContractHeadersById(data: DeleteApiContractServiceMerchantsContractsContractHeadersByIdData): CancelablePromise<DeleteApiContractServiceMerchantsContractsContractHeadersByIdResponse> {
462
+ return this.httpRequest.request({
463
+ method: 'DELETE',
464
+ url: '/api/contract-service/merchants/contracts/contract-headers/{id}',
465
+ path: {
466
+ id: data.id
467
+ },
468
+ errors: {
469
+ 400: 'Bad Request',
470
+ 401: 'Unauthorized',
471
+ 403: 'Forbidden',
472
+ 404: 'Not Found',
473
+ 500: 'Server Error',
474
+ 501: 'Server Error'
475
+ }
476
+ });
477
+ }
478
+
479
+ /**
480
+ * @param data The data for the request.
481
+ * @param data.id
482
+ * @returns UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderDetailForMerchantDto Success
483
+ * @throws ApiError
484
+ */
485
+ public getApiContractServiceMerchantsContractsContractHeadersById(data: GetApiContractServiceMerchantsContractsContractHeadersByIdData): CancelablePromise<GetApiContractServiceMerchantsContractsContractHeadersByIdResponse> {
486
+ return this.httpRequest.request({
487
+ method: 'GET',
488
+ url: '/api/contract-service/merchants/contracts/contract-headers/{id}',
489
+ path: {
490
+ id: data.id
491
+ },
492
+ errors: {
493
+ 400: 'Bad Request',
494
+ 401: 'Unauthorized',
495
+ 403: 'Forbidden',
496
+ 404: 'Not Found',
497
+ 500: 'Server Error',
498
+ 501: 'Server Error'
499
+ }
500
+ });
501
+ }
502
+
503
+ /**
504
+ * @param data The data for the request.
505
+ * @param data.id
506
+ * @param data.requestBody
507
+ * @returns UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderDetailForMerchantDto Success
508
+ * @throws ApiError
509
+ */
510
+ public putApiContractServiceMerchantsContractsContractHeadersById(data: PutApiContractServiceMerchantsContractsContractHeadersByIdData): CancelablePromise<PutApiContractServiceMerchantsContractsContractHeadersByIdResponse> {
511
+ return this.httpRequest.request({
512
+ method: 'PUT',
513
+ url: '/api/contract-service/merchants/contracts/contract-headers/{id}',
514
+ path: {
515
+ id: data.id
516
+ },
517
+ body: data.requestBody,
518
+ mediaType: 'application/json',
519
+ errors: {
520
+ 400: 'Bad Request',
521
+ 401: 'Unauthorized',
522
+ 403: 'Forbidden',
523
+ 404: 'Not Found',
524
+ 500: 'Server Error',
525
+ 501: 'Server Error'
526
+ }
527
+ });
528
+ }
529
+
530
+ /**
531
+ * @param data The data for the request.
532
+ * @param data.isDraft
533
+ * @param data.sorting
534
+ * @param data.skipCount
535
+ * @param data.maxResultCount
536
+ * @returns PagedResultDto_ContractHeaderForMerchantDto Success
537
+ * @throws ApiError
538
+ */
539
+ public getApiContractServiceMerchantsContractsContractHeaders(data: GetApiContractServiceMerchantsContractsContractHeadersData = {}): CancelablePromise<GetApiContractServiceMerchantsContractsContractHeadersResponse> {
540
+ return this.httpRequest.request({
541
+ method: 'GET',
542
+ url: '/api/contract-service/merchants/contracts/contract-headers',
543
+ query: {
544
+ IsDraft: data.isDraft,
545
+ Sorting: data.sorting,
546
+ SkipCount: data.skipCount,
547
+ MaxResultCount: data.maxResultCount
548
+ },
549
+ errors: {
550
+ 400: 'Bad Request',
551
+ 401: 'Unauthorized',
552
+ 403: 'Forbidden',
553
+ 404: 'Not Found',
554
+ 500: 'Server Error',
555
+ 501: 'Server Error'
556
+ }
557
+ });
558
+ }
559
+
560
+ /**
561
+ * @param data The data for the request.
562
+ * @param data.id
563
+ * @returns UniRefund_ContractService_Enums_ContractHeaderForMerchantDraftMissingSteps Success
564
+ * @throws ApiError
565
+ */
566
+ public getApiContractServiceMerchantsContractsContractHeadersByIdGetMissingSteps(data: GetApiContractServiceMerchantsContractsContractHeadersByIdGetMissingStepsData): CancelablePromise<GetApiContractServiceMerchantsContractsContractHeadersByIdGetMissingStepsResponse> {
567
+ return this.httpRequest.request({
568
+ method: 'GET',
569
+ url: '/api/contract-service/merchants/contracts/contract-headers/{id}/get-missing-steps',
570
+ path: {
571
+ id: data.id
572
+ },
573
+ errors: {
574
+ 400: 'Bad Request',
575
+ 401: 'Unauthorized',
576
+ 403: 'Forbidden',
577
+ 404: 'Not Found',
578
+ 500: 'Server Error',
579
+ 501: 'Server Error'
580
+ }
581
+ });
582
+ }
583
+
584
+ }
585
+
586
+ export class ContractsMerchantIntegrationService {
587
+ constructor(public readonly httpRequest: BaseHttpRequest) { }
588
+
589
+ /**
590
+ * @param data The data for the request.
591
+ * @param data.contractHeaderIds
592
+ * @returns UniRefund_ContractService_ContractsForMerchant_ContractHeaders_ContractHeaderInformationForVATStatementDto Success
593
+ * @throws ApiError
594
+ */
595
+ public getIntegrationApiMerchantsForVatStatement(data: GetIntegrationApiMerchantsForVatStatementData = {}): CancelablePromise<GetIntegrationApiMerchantsForVatStatementResponse> {
596
+ return this.httpRequest.request({
597
+ method: 'GET',
598
+ url: '/integration-api/merchants/for-vat-statement',
599
+ query: {
600
+ contractHeaderIds: data.contractHeaderIds
601
+ },
602
+ errors: {
603
+ 400: 'Bad Request',
604
+ 401: 'Unauthorized',
605
+ 403: 'Forbidden',
606
+ 404: 'Not Found',
607
+ 500: 'Server Error',
608
+ 501: 'Server Error'
609
+ }
610
+ });
611
+ }
612
+
613
+ }
614
+
615
+ export class ContractsRefundPointService {
616
+ constructor(public readonly httpRequest: BaseHttpRequest) { }
617
+
618
+ /**
619
+ * @param data The data for the request.
620
+ * @param data.id
621
+ * @param data.requestBody
622
+ * @returns UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_ContractHeaderForRefundPointDto Success
623
+ * @throws ApiError
624
+ */
625
+ public postApiContractServiceRefundPointsByIdContractsContractHeaders(data: PostApiContractServiceRefundPointsByIdContractsContractHeadersData): CancelablePromise<PostApiContractServiceRefundPointsByIdContractsContractHeadersResponse> {
626
+ return this.httpRequest.request({
627
+ method: 'POST',
628
+ url: '/api/contract-service/refund-points/{id}/contracts/contract-headers',
629
+ path: {
630
+ id: data.id
631
+ },
632
+ body: data.requestBody,
633
+ mediaType: 'application/json',
634
+ errors: {
635
+ 400: 'Bad Request',
636
+ 401: 'Unauthorized',
637
+ 403: 'Forbidden',
638
+ 404: 'Not Found',
639
+ 500: 'Server Error',
640
+ 501: 'Server Error'
641
+ }
642
+ });
643
+ }
644
+
645
+ /**
646
+ * @param data The data for the request.
647
+ * @param data.id
648
+ * @param data.isDraft
649
+ * @param data.sorting
650
+ * @param data.skipCount
651
+ * @param data.maxResultCount
652
+ * @returns PagedResultDto_ContractHeaderDetailForRefundPointDto Success
653
+ * @throws ApiError
654
+ */
655
+ public getApiContractServiceRefundPointsByIdContractsContractHeaders(data: GetApiContractServiceRefundPointsByIdContractsContractHeadersData): CancelablePromise<GetApiContractServiceRefundPointsByIdContractsContractHeadersResponse> {
656
+ return this.httpRequest.request({
657
+ method: 'GET',
658
+ url: '/api/contract-service/refund-points/{id}/contracts/contract-headers',
659
+ path: {
660
+ id: data.id
661
+ },
662
+ query: {
663
+ IsDraft: data.isDraft,
664
+ Sorting: data.sorting,
665
+ SkipCount: data.skipCount,
666
+ MaxResultCount: data.maxResultCount
667
+ },
668
+ errors: {
669
+ 400: 'Bad Request',
670
+ 401: 'Unauthorized',
671
+ 403: 'Forbidden',
672
+ 404: 'Not Found',
673
+ 500: 'Server Error',
674
+ 501: 'Server Error'
675
+ }
676
+ });
677
+ }
678
+
679
+ /**
680
+ * @param data The data for the request.
681
+ * @param data.id
682
+ * @returns unknown Success
683
+ * @throws ApiError
684
+ */
685
+ public deleteApiContractServiceRefundPointsContractsContractHeadersById(data: DeleteApiContractServiceRefundPointsContractsContractHeadersByIdData): CancelablePromise<DeleteApiContractServiceRefundPointsContractsContractHeadersByIdResponse> {
686
+ return this.httpRequest.request({
687
+ method: 'DELETE',
688
+ url: '/api/contract-service/refund-points/contracts/contract-headers/{id}',
689
+ path: {
690
+ id: data.id
691
+ },
692
+ errors: {
693
+ 400: 'Bad Request',
694
+ 401: 'Unauthorized',
695
+ 403: 'Forbidden',
696
+ 404: 'Not Found',
697
+ 500: 'Server Error',
698
+ 501: 'Server Error'
699
+ }
700
+ });
701
+ }
702
+
703
+ /**
704
+ * @param data The data for the request.
705
+ * @param data.id
706
+ * @returns UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_ContractHeaderDetailForRefundPointDto Success
707
+ * @throws ApiError
708
+ */
709
+ public getApiContractServiceRefundPointsContractsContractHeadersById(data: GetApiContractServiceRefundPointsContractsContractHeadersByIdData): CancelablePromise<GetApiContractServiceRefundPointsContractsContractHeadersByIdResponse> {
710
+ return this.httpRequest.request({
711
+ method: 'GET',
712
+ url: '/api/contract-service/refund-points/contracts/contract-headers/{id}',
713
+ path: {
714
+ id: data.id
715
+ },
716
+ errors: {
717
+ 400: 'Bad Request',
718
+ 401: 'Unauthorized',
719
+ 403: 'Forbidden',
720
+ 404: 'Not Found',
721
+ 500: 'Server Error',
722
+ 501: 'Server Error'
723
+ }
724
+ });
725
+ }
726
+
727
+ /**
728
+ * @param data The data for the request.
729
+ * @param data.id
730
+ * @param data.requestBody
731
+ * @returns UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_ContractHeaderDetailForRefundPointDto Success
732
+ * @throws ApiError
733
+ */
734
+ public putApiContractServiceRefundPointsContractsContractHeadersById(data: PutApiContractServiceRefundPointsContractsContractHeadersByIdData): CancelablePromise<PutApiContractServiceRefundPointsContractsContractHeadersByIdResponse> {
735
+ return this.httpRequest.request({
736
+ method: 'PUT',
737
+ url: '/api/contract-service/refund-points/contracts/contract-headers/{id}',
738
+ path: {
739
+ id: data.id
740
+ },
741
+ body: data.requestBody,
742
+ mediaType: 'application/json',
743
+ errors: {
744
+ 400: 'Bad Request',
745
+ 401: 'Unauthorized',
746
+ 403: 'Forbidden',
747
+ 404: 'Not Found',
748
+ 500: 'Server Error',
749
+ 501: 'Server Error'
750
+ }
751
+ });
752
+ }
753
+
754
+ /**
755
+ * @param data The data for the request.
756
+ * @param data.isDraft
757
+ * @param data.sorting
758
+ * @param data.skipCount
759
+ * @param data.maxResultCount
760
+ * @returns PagedResultDto_ContractHeaderForRefundPointDto Success
761
+ * @throws ApiError
762
+ */
763
+ public getApiContractServiceRefundPointsContractsContractHeaders(data: GetApiContractServiceRefundPointsContractsContractHeadersData = {}): CancelablePromise<GetApiContractServiceRefundPointsContractsContractHeadersResponse> {
764
+ return this.httpRequest.request({
765
+ method: 'GET',
766
+ url: '/api/contract-service/refund-points/contracts/contract-headers',
767
+ query: {
768
+ IsDraft: data.isDraft,
769
+ Sorting: data.sorting,
770
+ SkipCount: data.skipCount,
771
+ MaxResultCount: data.maxResultCount
772
+ },
773
+ errors: {
774
+ 400: 'Bad Request',
775
+ 401: 'Unauthorized',
776
+ 403: 'Forbidden',
777
+ 404: 'Not Found',
778
+ 500: 'Server Error',
779
+ 501: 'Server Error'
780
+ }
781
+ });
782
+ }
783
+
784
+ /**
785
+ * @param data The data for the request.
786
+ * @param data.id
787
+ * @returns UniRefund_ContractService_Enums_ContractHeaderForRefundPointDraftMissingSteps Success
788
+ * @throws ApiError
789
+ */
790
+ public getApiContractServiceRefundPointsContractsContractHeadersByIdGetMissingSteps(data: GetApiContractServiceRefundPointsContractsContractHeadersByIdGetMissingStepsData): CancelablePromise<GetApiContractServiceRefundPointsContractsContractHeadersByIdGetMissingStepsResponse> {
791
+ return this.httpRequest.request({
792
+ method: 'GET',
793
+ url: '/api/contract-service/refund-points/contracts/contract-headers/{id}/get-missing-steps',
794
+ path: {
795
+ id: data.id
796
+ },
797
+ errors: {
798
+ 400: 'Bad Request',
799
+ 401: 'Unauthorized',
800
+ 403: 'Forbidden',
801
+ 404: 'Not Found',
802
+ 500: 'Server Error',
803
+ 501: 'Server Error'
804
+ }
805
+ });
806
+ }
807
+
808
+ /**
809
+ * @param data The data for the request.
810
+ * @param data.id
811
+ * @returns boolean Success
812
+ * @throws ApiError
813
+ */
814
+ public postApiContractServiceRefundPointsContractsContractHeadersByIdValidate(data: PostApiContractServiceRefundPointsContractsContractHeadersByIdValidateData): CancelablePromise<PostApiContractServiceRefundPointsContractsContractHeadersByIdValidateResponse> {
815
+ return this.httpRequest.request({
816
+ method: 'POST',
817
+ url: '/api/contract-service/refund-points/contracts/contract-headers/{id}/validate',
818
+ path: {
819
+ id: data.id
820
+ },
821
+ errors: {
822
+ 400: 'Bad Request',
823
+ 401: 'Unauthorized',
824
+ 403: 'Forbidden',
825
+ 404: 'Not Found',
826
+ 500: 'Server Error',
827
+ 501: 'Server Error'
828
+ }
829
+ });
830
+ }
831
+
832
+ }
833
+
834
+ export class ContractsRefundPointIntegrationService {
835
+ constructor(public readonly httpRequest: BaseHttpRequest) { }
836
+
837
+ /**
838
+ * @param data The data for the request.
839
+ * @param data.id
840
+ * @param data.requestBody
841
+ * @returns UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_CalculateFeesForRefundResponseDto Success
842
+ * @throws ApiError
843
+ */
844
+ public postIntegrationApiRefundPointsByIdCalculateFees(data: PostIntegrationApiRefundPointsByIdCalculateFeesData): CancelablePromise<PostIntegrationApiRefundPointsByIdCalculateFeesResponse> {
845
+ return this.httpRequest.request({
846
+ method: 'POST',
847
+ url: '/integration-api/refund-points/{id}/calculate-fees',
848
+ path: {
849
+ id: data.id
850
+ },
851
+ body: data.requestBody,
852
+ mediaType: 'application/json',
853
+ errors: {
854
+ 400: 'Bad Request',
855
+ 401: 'Unauthorized',
856
+ 403: 'Forbidden',
857
+ 404: 'Not Found',
858
+ 500: 'Server Error',
859
+ 501: 'Server Error'
860
+ }
861
+ });
862
+ }
863
+
864
+ /**
865
+ * @param data The data for the request.
866
+ * @param data.id
867
+ * @param data.requestBody
868
+ * @returns UniRefund_ContractService_ContractsForRefundPoint_ContractHeaders_CalculateFeesForRebateResponseDto Success
869
+ * @throws ApiError
870
+ */
871
+ public postIntegrationApiRefundPointsByIdCalculateFeesForRebate(data: PostIntegrationApiRefundPointsByIdCalculateFeesForRebateData): CancelablePromise<PostIntegrationApiRefundPointsByIdCalculateFeesForRebateResponse> {
872
+ return this.httpRequest.request({
873
+ method: 'POST',
874
+ url: '/integration-api/refund-points/{id}/calculate-fees-for-rebate',
875
+ path: {
876
+ id: data.id
877
+ },
878
+ body: data.requestBody,
879
+ mediaType: 'application/json',
880
+ errors: {
881
+ 400: 'Bad Request',
882
+ 401: 'Unauthorized',
883
+ 403: 'Forbidden',
884
+ 404: 'Not Found',
885
+ 500: 'Server Error',
886
+ 501: 'Server Error'
887
+ }
888
+ });
889
+ }
890
+
891
+ }
892
+
893
+ export class RebateTablesService {
894
+ constructor(public readonly httpRequest: BaseHttpRequest) { }
895
+
896
+ /**
897
+ * @param data The data for the request.
898
+ * @param data.id
899
+ * @returns UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto Success
900
+ * @throws ApiError
901
+ */
902
+ public getApiContractServiceRebateTablesRebateSettingsById(data: GetApiContractServiceRebateTablesRebateSettingsByIdData): CancelablePromise<GetApiContractServiceRebateTablesRebateSettingsByIdResponse> {
903
+ return this.httpRequest.request({
904
+ method: 'GET',
905
+ url: '/api/contract-service/rebate-tables/rebate-settings/{id}',
906
+ path: {
907
+ id: data.id
908
+ },
909
+ errors: {
910
+ 400: 'Bad Request',
911
+ 401: 'Unauthorized',
912
+ 403: 'Forbidden',
913
+ 404: 'Not Found',
914
+ 500: 'Server Error',
915
+ 501: 'Server Error'
916
+ }
917
+ });
918
+ }
919
+
920
+ /**
921
+ * @param data The data for the request.
922
+ * @param data.id
923
+ * @param data.requestBody
924
+ * @returns UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto Success
925
+ * @throws ApiError
926
+ */
927
+ public putApiContractServiceRebateTablesRebateSettingsById(data: PutApiContractServiceRebateTablesRebateSettingsByIdData): CancelablePromise<PutApiContractServiceRebateTablesRebateSettingsByIdResponse> {
928
+ return this.httpRequest.request({
929
+ method: 'PUT',
930
+ url: '/api/contract-service/rebate-tables/rebate-settings/{id}',
931
+ path: {
932
+ id: data.id
933
+ },
934
+ body: data.requestBody,
935
+ mediaType: 'application/json',
936
+ errors: {
937
+ 400: 'Bad Request',
938
+ 401: 'Unauthorized',
939
+ 403: 'Forbidden',
940
+ 404: 'Not Found',
941
+ 500: 'Server Error',
942
+ 501: 'Server Error'
943
+ }
944
+ });
945
+ }
946
+
947
+ /**
948
+ * @param data The data for the request.
949
+ * @param data.id
950
+ * @param data.requestBody
951
+ * @returns UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto Success
952
+ * @throws ApiError
953
+ */
954
+ public postApiContractServiceRebateTablesRebateSettingsByIdRebateTableHeaders(data: PostApiContractServiceRebateTablesRebateSettingsByIdRebateTableHeadersData): CancelablePromise<PostApiContractServiceRebateTablesRebateSettingsByIdRebateTableHeadersResponse> {
955
+ return this.httpRequest.request({
956
+ method: 'POST',
957
+ url: '/api/contract-service/rebate-tables/rebate-settings/{id}/rebate-table-headers',
958
+ path: {
959
+ id: data.id
960
+ },
961
+ body: data.requestBody,
962
+ mediaType: 'application/json',
963
+ errors: {
964
+ 400: 'Bad Request',
965
+ 401: 'Unauthorized',
966
+ 403: 'Forbidden',
967
+ 404: 'Not Found',
968
+ 500: 'Server Error',
969
+ 501: 'Server Error'
970
+ }
971
+ });
972
+ }
973
+
974
+ /**
975
+ * @param data The data for the request.
976
+ * @param data.id
977
+ * @param data.requestBody
978
+ * @returns UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionDto Success
979
+ * @throws ApiError
980
+ */
981
+ public postApiContractServiceRebateTablesRebateSettingsByIdMinimumNetCommissions(data: PostApiContractServiceRebateTablesRebateSettingsByIdMinimumNetCommissionsData): CancelablePromise<PostApiContractServiceRebateTablesRebateSettingsByIdMinimumNetCommissionsResponse> {
982
+ return this.httpRequest.request({
983
+ method: 'POST',
984
+ url: '/api/contract-service/rebate-tables/rebate-settings/{id}/minimum-net-commissions',
985
+ path: {
986
+ id: data.id
987
+ },
988
+ body: data.requestBody,
989
+ mediaType: 'application/json',
990
+ errors: {
991
+ 400: 'Bad Request',
992
+ 401: 'Unauthorized',
993
+ 403: 'Forbidden',
994
+ 404: 'Not Found',
995
+ 500: 'Server Error',
996
+ 501: 'Server Error'
997
+ }
998
+ });
999
+ }
1000
+
1001
+ /**
1002
+ * @param data The data for the request.
1003
+ * @param data.id
1004
+ * @returns UniRefund_ContractService_Rebates_RebateSettings_RebateSettingDto Success
1005
+ * @throws ApiError
1006
+ */
1007
+ public getApiContractServiceRebateTablesRebateSettingsDetailById(data: GetApiContractServiceRebateTablesRebateSettingsDetailByIdData): CancelablePromise<GetApiContractServiceRebateTablesRebateSettingsDetailByIdResponse> {
1008
+ return this.httpRequest.request({
1009
+ method: 'GET',
1010
+ url: '/api/contract-service/rebate-tables/rebate-settings/detail/{id}',
1011
+ path: {
1012
+ id: data.id
1013
+ },
1014
+ errors: {
1015
+ 400: 'Bad Request',
1016
+ 401: 'Unauthorized',
1017
+ 403: 'Forbidden',
1018
+ 404: 'Not Found',
1019
+ 500: 'Server Error',
1020
+ 501: 'Server Error'
1021
+ }
1022
+ });
1023
+ }
1024
+
1025
+ /**
1026
+ * @param data The data for the request.
1027
+ * @param data.id
1028
+ * @returns UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionDto Success
1029
+ * @throws ApiError
1030
+ */
1031
+ public getApiContractServiceRebateTablesMinimumNetCommissionsById(data: GetApiContractServiceRebateTablesMinimumNetCommissionsByIdData): CancelablePromise<GetApiContractServiceRebateTablesMinimumNetCommissionsByIdResponse> {
1032
+ return this.httpRequest.request({
1033
+ method: 'GET',
1034
+ url: '/api/contract-service/rebate-tables/minimum-net-commissions/{id}',
1035
+ path: {
1036
+ id: data.id
1037
+ },
1038
+ errors: {
1039
+ 400: 'Bad Request',
1040
+ 401: 'Unauthorized',
1041
+ 403: 'Forbidden',
1042
+ 404: 'Not Found',
1043
+ 500: 'Server Error',
1044
+ 501: 'Server Error'
1045
+ }
1046
+ });
1047
+ }
1048
+
1049
+ /**
1050
+ * @param data The data for the request.
1051
+ * @param data.id
1052
+ * @param data.requestBody
1053
+ * @returns UniRefund_ContractService_Rebates_MinimumNetCommissions_MinimumNetCommissionDto Success
1054
+ * @throws ApiError
1055
+ */
1056
+ public putApiContractServiceRebateTablesMinimumNetCommissionsById(data: PutApiContractServiceRebateTablesMinimumNetCommissionsByIdData): CancelablePromise<PutApiContractServiceRebateTablesMinimumNetCommissionsByIdResponse> {
1057
+ return this.httpRequest.request({
1058
+ method: 'PUT',
1059
+ url: '/api/contract-service/rebate-tables/minimum-net-commissions/{id}',
1060
+ path: {
1061
+ id: data.id
1062
+ },
1063
+ body: data.requestBody,
1064
+ mediaType: 'application/json',
1065
+ errors: {
1066
+ 400: 'Bad Request',
1067
+ 401: 'Unauthorized',
1068
+ 403: 'Forbidden',
1069
+ 404: 'Not Found',
1070
+ 500: 'Server Error',
1071
+ 501: 'Server Error'
1072
+ }
1073
+ });
1074
+ }
1075
+
1076
+ /**
1077
+ * @param data The data for the request.
1078
+ * @param data.id
1079
+ * @returns unknown Success
1080
+ * @throws ApiError
1081
+ */
1082
+ public deleteApiContractServiceRebateTablesMinimumNetCommissionsById(data: DeleteApiContractServiceRebateTablesMinimumNetCommissionsByIdData): CancelablePromise<DeleteApiContractServiceRebateTablesMinimumNetCommissionsByIdResponse> {
1083
+ return this.httpRequest.request({
1084
+ method: 'DELETE',
1085
+ url: '/api/contract-service/rebate-tables/minimum-net-commissions/{id}',
1086
+ path: {
1087
+ id: data.id
1088
+ },
1089
+ errors: {
1090
+ 400: 'Bad Request',
1091
+ 401: 'Unauthorized',
1092
+ 403: 'Forbidden',
1093
+ 404: 'Not Found',
1094
+ 500: 'Server Error',
1095
+ 501: 'Server Error'
1096
+ }
1097
+ });
1098
+ }
1099
+
1100
+ /**
1101
+ * @param data The data for the request.
1102
+ * @param data.sorting
1103
+ * @param data.skipCount
1104
+ * @param data.maxResultCount
1105
+ * @returns PagedResultDto_MinimumNetCommissionDto Success
1106
+ * @throws ApiError
1107
+ */
1108
+ public getApiContractServiceRebateTablesMinimumNetCommissions(data: GetApiContractServiceRebateTablesMinimumNetCommissionsData = {}): CancelablePromise<GetApiContractServiceRebateTablesMinimumNetCommissionsResponse> {
1109
+ return this.httpRequest.request({
1110
+ method: 'GET',
1111
+ url: '/api/contract-service/rebate-tables/minimum-net-commissions',
1112
+ query: {
1113
+ Sorting: data.sorting,
1114
+ SkipCount: data.skipCount,
1115
+ MaxResultCount: data.maxResultCount
1116
+ },
1117
+ errors: {
1118
+ 400: 'Bad Request',
1119
+ 401: 'Unauthorized',
1120
+ 403: 'Forbidden',
1121
+ 404: 'Not Found',
1122
+ 500: 'Server Error',
1123
+ 501: 'Server Error'
1124
+ }
1125
+ });
1126
+ }
1127
+
1128
+ /**
1129
+ * @param data The data for the request.
1130
+ * @param data.id
1131
+ * @returns UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailDto Success
1132
+ * @throws ApiError
1133
+ */
1134
+ public getApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsById(data: GetApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdData): CancelablePromise<GetApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdResponse> {
1135
+ return this.httpRequest.request({
1136
+ method: 'GET',
1137
+ url: '/api/contract-service/rebate-tables/rebate-table-headers/processing-fee-details/{id}',
1138
+ path: {
1139
+ id: data.id
1140
+ },
1141
+ errors: {
1142
+ 400: 'Bad Request',
1143
+ 401: 'Unauthorized',
1144
+ 403: 'Forbidden',
1145
+ 404: 'Not Found',
1146
+ 500: 'Server Error',
1147
+ 501: 'Server Error'
1148
+ }
1149
+ });
1150
+ }
1151
+
1152
+ /**
1153
+ * @param data The data for the request.
1154
+ * @param data.id
1155
+ * @param data.requestBody
1156
+ * @returns UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailDto Success
1157
+ * @throws ApiError
1158
+ */
1159
+ public putApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsById(data: PutApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdData): CancelablePromise<PutApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdResponse> {
1160
+ return this.httpRequest.request({
1161
+ method: 'PUT',
1162
+ url: '/api/contract-service/rebate-tables/rebate-table-headers/processing-fee-details/{id}',
1163
+ path: {
1164
+ id: data.id
1165
+ },
1166
+ body: data.requestBody,
1167
+ mediaType: 'application/json',
1168
+ errors: {
1169
+ 400: 'Bad Request',
1170
+ 401: 'Unauthorized',
1171
+ 403: 'Forbidden',
1172
+ 404: 'Not Found',
1173
+ 500: 'Server Error',
1174
+ 501: 'Server Error'
1175
+ }
1176
+ });
1177
+ }
1178
+
1179
+ /**
1180
+ * @param data The data for the request.
1181
+ * @param data.id
1182
+ * @returns unknown Success
1183
+ * @throws ApiError
1184
+ */
1185
+ public deleteApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsById(data: DeleteApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdData): CancelablePromise<DeleteApiContractServiceRebateTablesRebateTableHeadersProcessingFeeDetailsByIdResponse> {
1186
+ return this.httpRequest.request({
1187
+ method: 'DELETE',
1188
+ url: '/api/contract-service/rebate-tables/rebate-table-headers/processing-fee-details/{id}',
1189
+ path: {
1190
+ id: data.id
1191
+ },
1192
+ errors: {
1193
+ 400: 'Bad Request',
1194
+ 401: 'Unauthorized',
1195
+ 403: 'Forbidden',
1196
+ 404: 'Not Found',
1197
+ 500: 'Server Error',
1198
+ 501: 'Server Error'
1199
+ }
1200
+ });
1201
+ }
1202
+
1203
+ /**
1204
+ * @param data The data for the request.
1205
+ * @param data.id
1206
+ * @param data.requestBody
1207
+ * @returns UniRefund_ContractService_Rebates_ProcessingFeeDetails_ProcessingFeeDetailDto Success
1208
+ * @throws ApiError
1209
+ */
1210
+ public postApiContractServiceRebateTablesRebateTableHeadersByIdProcessingFeeDetails(data: PostApiContractServiceRebateTablesRebateTableHeadersByIdProcessingFeeDetailsData): CancelablePromise<PostApiContractServiceRebateTablesRebateTableHeadersByIdProcessingFeeDetailsResponse> {
1211
+ return this.httpRequest.request({
1212
+ method: 'POST',
1213
+ url: '/api/contract-service/rebate-tables/rebate-table-headers/{id}/processing-fee-details',
1214
+ path: {
1215
+ id: data.id
1216
+ },
1217
+ body: data.requestBody,
1218
+ mediaType: 'application/json',
1219
+ errors: {
1220
+ 400: 'Bad Request',
1221
+ 401: 'Unauthorized',
1222
+ 403: 'Forbidden',
1223
+ 404: 'Not Found',
1224
+ 500: 'Server Error',
1225
+ 501: 'Server Error'
1226
+ }
1227
+ });
1228
+ }
1229
+
1230
+ /**
1231
+ * @param data The data for the request.
1232
+ * @param data.id
1233
+ * @returns UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailDto Success
1234
+ * @throws ApiError
1235
+ */
1236
+ public getApiContractServiceRebateTablesRebateTableDetailsById(data: GetApiContractServiceRebateTablesRebateTableDetailsByIdData): CancelablePromise<GetApiContractServiceRebateTablesRebateTableDetailsByIdResponse> {
1237
+ return this.httpRequest.request({
1238
+ method: 'GET',
1239
+ url: '/api/contract-service/rebate-tables/rebate-table-details/{id}',
1240
+ path: {
1241
+ id: data.id
1242
+ },
1243
+ errors: {
1244
+ 400: 'Bad Request',
1245
+ 401: 'Unauthorized',
1246
+ 403: 'Forbidden',
1247
+ 404: 'Not Found',
1248
+ 500: 'Server Error',
1249
+ 501: 'Server Error'
1250
+ }
1251
+ });
1252
+ }
1253
+
1254
+ /**
1255
+ * @param data The data for the request.
1256
+ * @param data.id
1257
+ * @param data.requestBody
1258
+ * @returns UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailDto Success
1259
+ * @throws ApiError
1260
+ */
1261
+ public putApiContractServiceRebateTablesRebateTableDetailsById(data: PutApiContractServiceRebateTablesRebateTableDetailsByIdData): CancelablePromise<PutApiContractServiceRebateTablesRebateTableDetailsByIdResponse> {
1262
+ return this.httpRequest.request({
1263
+ method: 'PUT',
1264
+ url: '/api/contract-service/rebate-tables/rebate-table-details/{id}',
1265
+ path: {
1266
+ id: data.id
1267
+ },
1268
+ body: data.requestBody,
1269
+ mediaType: 'application/json',
1270
+ errors: {
1271
+ 400: 'Bad Request',
1272
+ 401: 'Unauthorized',
1273
+ 403: 'Forbidden',
1274
+ 404: 'Not Found',
1275
+ 500: 'Server Error',
1276
+ 501: 'Server Error'
1277
+ }
1278
+ });
1279
+ }
1280
+
1281
+ /**
1282
+ * @param data The data for the request.
1283
+ * @param data.id
1284
+ * @returns unknown Success
1285
+ * @throws ApiError
1286
+ */
1287
+ public deleteApiContractServiceRebateTablesRebateTableDetailsById(data: DeleteApiContractServiceRebateTablesRebateTableDetailsByIdData): CancelablePromise<DeleteApiContractServiceRebateTablesRebateTableDetailsByIdResponse> {
1288
+ return this.httpRequest.request({
1289
+ method: 'DELETE',
1290
+ url: '/api/contract-service/rebate-tables/rebate-table-details/{id}',
1291
+ path: {
1292
+ id: data.id
1293
+ },
1294
+ errors: {
1295
+ 400: 'Bad Request',
1296
+ 401: 'Unauthorized',
1297
+ 403: 'Forbidden',
1298
+ 404: 'Not Found',
1299
+ 500: 'Server Error',
1300
+ 501: 'Server Error'
1301
+ }
1302
+ });
1303
+ }
1304
+
1305
+ /**
1306
+ * @param data The data for the request.
1307
+ * @param data.sorting
1308
+ * @param data.skipCount
1309
+ * @param data.maxResultCount
1310
+ * @returns PagedResultDto_RebateTableDetailDto Success
1311
+ * @throws ApiError
1312
+ */
1313
+ public getApiContractServiceRebateTablesRebateTableDetails(data: GetApiContractServiceRebateTablesRebateTableDetailsData = {}): CancelablePromise<GetApiContractServiceRebateTablesRebateTableDetailsResponse> {
1314
+ return this.httpRequest.request({
1315
+ method: 'GET',
1316
+ url: '/api/contract-service/rebate-tables/rebate-table-details',
1317
+ query: {
1318
+ Sorting: data.sorting,
1319
+ SkipCount: data.skipCount,
1320
+ MaxResultCount: data.maxResultCount
1321
+ },
1322
+ errors: {
1323
+ 400: 'Bad Request',
1324
+ 401: 'Unauthorized',
1325
+ 403: 'Forbidden',
1326
+ 404: 'Not Found',
1327
+ 500: 'Server Error',
1328
+ 501: 'Server Error'
1329
+ }
1330
+ });
1331
+ }
1332
+
1333
+ /**
1334
+ * @param data The data for the request.
1335
+ * @param data.id
1336
+ * @returns UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderTemplateDto Success
1337
+ * @throws ApiError
1338
+ */
1339
+ public getApiContractServiceRebateTablesRebateTableHeadersById(data: GetApiContractServiceRebateTablesRebateTableHeadersByIdData): CancelablePromise<GetApiContractServiceRebateTablesRebateTableHeadersByIdResponse> {
1340
+ return this.httpRequest.request({
1341
+ method: 'GET',
1342
+ url: '/api/contract-service/rebate-tables/rebate-table-headers/{id}',
1343
+ path: {
1344
+ id: data.id
1345
+ },
1346
+ errors: {
1347
+ 400: 'Bad Request',
1348
+ 401: 'Unauthorized',
1349
+ 403: 'Forbidden',
1350
+ 404: 'Not Found',
1351
+ 500: 'Server Error',
1352
+ 501: 'Server Error'
1353
+ }
1354
+ });
1355
+ }
1356
+
1357
+ /**
1358
+ * @param data The data for the request.
1359
+ * @param data.id
1360
+ * @param data.requestBody
1361
+ * @returns UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderTemplateDto Success
1362
+ * @throws ApiError
1363
+ */
1364
+ public putApiContractServiceRebateTablesRebateTableHeadersById(data: PutApiContractServiceRebateTablesRebateTableHeadersByIdData): CancelablePromise<PutApiContractServiceRebateTablesRebateTableHeadersByIdResponse> {
1365
+ return this.httpRequest.request({
1366
+ method: 'PUT',
1367
+ url: '/api/contract-service/rebate-tables/rebate-table-headers/{id}',
1368
+ path: {
1369
+ id: data.id
1370
+ },
1371
+ body: data.requestBody,
1372
+ mediaType: 'application/json',
1373
+ errors: {
1374
+ 400: 'Bad Request',
1375
+ 401: 'Unauthorized',
1376
+ 403: 'Forbidden',
1377
+ 404: 'Not Found',
1378
+ 500: 'Server Error',
1379
+ 501: 'Server Error'
1380
+ }
1381
+ });
1382
+ }
1383
+
1384
+ /**
1385
+ * @param data The data for the request.
1386
+ * @param data.sorting
1387
+ * @param data.skipCount
1388
+ * @param data.maxResultCount
1389
+ * @returns PagedResultDto_RebateTableHeaderTemplateDto Success
1390
+ * @throws ApiError
1391
+ */
1392
+ public getApiContractServiceRebateTablesRebateTableHeadersTemplates(data: GetApiContractServiceRebateTablesRebateTableHeadersTemplatesData = {}): CancelablePromise<GetApiContractServiceRebateTablesRebateTableHeadersTemplatesResponse> {
1393
+ return this.httpRequest.request({
1394
+ method: 'GET',
1395
+ url: '/api/contract-service/rebate-tables/rebate-table-headers/templates',
1396
+ query: {
1397
+ Sorting: data.sorting,
1398
+ SkipCount: data.skipCount,
1399
+ MaxResultCount: data.maxResultCount
1400
+ },
1401
+ errors: {
1402
+ 400: 'Bad Request',
1403
+ 401: 'Unauthorized',
1404
+ 403: 'Forbidden',
1405
+ 404: 'Not Found',
1406
+ 500: 'Server Error',
1407
+ 501: 'Server Error'
1408
+ }
1409
+ });
1410
+ }
1411
+
1412
+ /**
1413
+ * @param data The data for the request.
1414
+ * @param data.requestBody
1415
+ * @returns UniRefund_ContractService_Rebates_RebateTableHeaders_RebateTableHeaderTemplateDto Success
1416
+ * @throws ApiError
1417
+ */
1418
+ public postApiContractServiceRebateTablesRebateTableHeadersTemplates(data: PostApiContractServiceRebateTablesRebateTableHeadersTemplatesData = {}): CancelablePromise<PostApiContractServiceRebateTablesRebateTableHeadersTemplatesResponse> {
1419
+ return this.httpRequest.request({
1420
+ method: 'POST',
1421
+ url: '/api/contract-service/rebate-tables/rebate-table-headers/templates',
1422
+ body: data.requestBody,
1423
+ mediaType: 'application/json',
1424
+ errors: {
1425
+ 400: 'Bad Request',
1426
+ 401: 'Unauthorized',
1427
+ 403: 'Forbidden',
1428
+ 404: 'Not Found',
1429
+ 500: 'Server Error',
1430
+ 501: 'Server Error'
1431
+ }
1432
+ });
1433
+ }
1434
+
1435
+ /**
1436
+ * @param data The data for the request.
1437
+ * @param data.id
1438
+ * @param data.requestBody
1439
+ * @returns UniRefund_ContractService_Rebates_RebateTableDetails_RebateTableDetailDto Success
1440
+ * @throws ApiError
1441
+ */
1442
+ public postApiContractServiceRebateTablesRebateTableHeadersByIdRebateTableDetails(data: PostApiContractServiceRebateTablesRebateTableHeadersByIdRebateTableDetailsData): CancelablePromise<PostApiContractServiceRebateTablesRebateTableHeadersByIdRebateTableDetailsResponse> {
1443
+ return this.httpRequest.request({
1444
+ method: 'POST',
1445
+ url: '/api/contract-service/rebate-tables/rebate-table-headers/{id}/rebate-table-details',
1446
+ path: {
1447
+ id: data.id
1448
+ },
1449
+ body: data.requestBody,
1450
+ mediaType: 'application/json',
1451
+ errors: {
1452
+ 400: 'Bad Request',
1453
+ 401: 'Unauthorized',
1454
+ 403: 'Forbidden',
1455
+ 404: 'Not Found',
1456
+ 500: 'Server Error',
1457
+ 501: 'Server Error'
1458
+ }
1459
+ });
1460
+ }
1461
+
1462
+ }
1463
+
1464
+ export class RefundFeeHeaderIntegrationService {
1465
+ constructor(public readonly httpRequest: BaseHttpRequest) { }
1466
+
1467
+ /**
1468
+ * @param data The data for the request.
1469
+ * @param data.id
1470
+ * @param data.refundFeeHeaderId
1471
+ * @returns UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto Success
1472
+ * @throws ApiError
1473
+ */
1474
+ public getIntegrationApiRefundFeeHeadersRefundPointsById(data: GetIntegrationApiRefundFeeHeadersRefundPointsByIdData): CancelablePromise<GetIntegrationApiRefundFeeHeadersRefundPointsByIdResponse> {
1475
+ return this.httpRequest.request({
1476
+ method: 'GET',
1477
+ url: '/integration-api/refund-fee-headers/refund-points/{id}',
1478
+ path: {
1479
+ id: data.id
1480
+ },
1481
+ query: {
1482
+ refundFeeHeaderId: data.refundFeeHeaderId
1483
+ },
1484
+ errors: {
1485
+ 400: 'Bad Request',
1486
+ 401: 'Unauthorized',
1487
+ 403: 'Forbidden',
1488
+ 404: 'Not Found',
1489
+ 500: 'Server Error',
1490
+ 501: 'Server Error'
1491
+ }
1492
+ });
1493
+ }
1494
+
1495
+ }
1496
+
1497
+ export class RefundTableHeaderIntegrationService {
1498
+ constructor(public readonly httpRequest: BaseHttpRequest) { }
1499
+
1500
+ /**
1501
+ * @param data The data for the request.
1502
+ * @param data.id
1503
+ * @param data.refundTableHeaderId
1504
+ * @returns UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderForTagDto Success
1505
+ * @throws ApiError
1506
+ */
1507
+ public getIntegrationApiRefundTableHeadersMerchantsById(data: GetIntegrationApiRefundTableHeadersMerchantsByIdData): CancelablePromise<GetIntegrationApiRefundTableHeadersMerchantsByIdResponse> {
1508
+ return this.httpRequest.request({
1509
+ method: 'GET',
1510
+ url: '/integration-api/refund-table-headers/merchants/{id}',
1511
+ path: {
1512
+ id: data.id
1513
+ },
1514
+ query: {
1515
+ refundTableHeaderId: data.refundTableHeaderId
1516
+ },
1517
+ errors: {
1518
+ 400: 'Bad Request',
1519
+ 401: 'Unauthorized',
1520
+ 403: 'Forbidden',
1521
+ 404: 'Not Found',
1522
+ 500: 'Server Error',
1523
+ 501: 'Server Error'
1524
+ }
1525
+ });
1526
+ }
1527
+
1528
+ }
1529
+
1530
+ export class RefundTablesService {
1531
+ constructor(public readonly httpRequest: BaseHttpRequest) { }
1532
+
1533
+ /**
1534
+ * @param data The data for the request.
1535
+ * @param data.id
1536
+ * @returns UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderDto Success
1537
+ * @throws ApiError
1538
+ */
1539
+ public getApiContractServiceRefundTablesRefundTableHeadersById(data: GetApiContractServiceRefundTablesRefundTableHeadersByIdData): CancelablePromise<GetApiContractServiceRefundTablesRefundTableHeadersByIdResponse> {
1540
+ return this.httpRequest.request({
1541
+ method: 'GET',
1542
+ url: '/api/contract-service/refund-tables/refund-table-headers/{id}',
1543
+ path: {
1544
+ id: data.id
1545
+ },
1546
+ errors: {
1547
+ 400: 'Bad Request',
1548
+ 401: 'Unauthorized',
1549
+ 403: 'Forbidden',
1550
+ 404: 'Not Found',
1551
+ 500: 'Server Error',
1552
+ 501: 'Server Error'
1553
+ }
1554
+ });
1555
+ }
1556
+
1557
+ /**
1558
+ * @param data The data for the request.
1559
+ * @param data.id
1560
+ * @param data.requestBody
1561
+ * @returns UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderDto Success
1562
+ * @throws ApiError
1563
+ */
1564
+ public putApiContractServiceRefundTablesRefundTableHeadersById(data: PutApiContractServiceRefundTablesRefundTableHeadersByIdData): CancelablePromise<PutApiContractServiceRefundTablesRefundTableHeadersByIdResponse> {
1565
+ return this.httpRequest.request({
1566
+ method: 'PUT',
1567
+ url: '/api/contract-service/refund-tables/refund-table-headers/{id}',
1568
+ path: {
1569
+ id: data.id
1570
+ },
1571
+ body: data.requestBody,
1572
+ mediaType: 'application/json',
1573
+ errors: {
1574
+ 400: 'Bad Request',
1575
+ 401: 'Unauthorized',
1576
+ 403: 'Forbidden',
1577
+ 404: 'Not Found',
1578
+ 500: 'Server Error',
1579
+ 501: 'Server Error'
1580
+ }
1581
+ });
1582
+ }
1583
+
1584
+ /**
1585
+ * @param data The data for the request.
1586
+ * @param data.id
1587
+ * @returns unknown Success
1588
+ * @throws ApiError
1589
+ */
1590
+ public deleteApiContractServiceRefundTablesRefundTableHeadersById(data: DeleteApiContractServiceRefundTablesRefundTableHeadersByIdData): CancelablePromise<DeleteApiContractServiceRefundTablesRefundTableHeadersByIdResponse> {
1591
+ return this.httpRequest.request({
1592
+ method: 'DELETE',
1593
+ url: '/api/contract-service/refund-tables/refund-table-headers/{id}',
1594
+ path: {
1595
+ id: data.id
1596
+ },
1597
+ errors: {
1598
+ 400: 'Bad Request',
1599
+ 401: 'Unauthorized',
1600
+ 403: 'Forbidden',
1601
+ 404: 'Not Found',
1602
+ 500: 'Server Error',
1603
+ 501: 'Server Error'
1604
+ }
1605
+ });
1606
+ }
1607
+
1608
+ /**
1609
+ * @param data The data for the request.
1610
+ * @param data.skipCount
1611
+ * @param data.maxResultCount
1612
+ * @returns PagedResultDto_RefundTableHeaderDto Success
1613
+ * @throws ApiError
1614
+ */
1615
+ public getApiContractServiceRefundTablesRefundTableHeaders(data: GetApiContractServiceRefundTablesRefundTableHeadersData = {}): CancelablePromise<GetApiContractServiceRefundTablesRefundTableHeadersResponse> {
1616
+ return this.httpRequest.request({
1617
+ method: 'GET',
1618
+ url: '/api/contract-service/refund-tables/refund-table-headers',
1619
+ query: {
1620
+ SkipCount: data.skipCount,
1621
+ MaxResultCount: data.maxResultCount
1622
+ },
1623
+ errors: {
1624
+ 400: 'Bad Request',
1625
+ 401: 'Unauthorized',
1626
+ 403: 'Forbidden',
1627
+ 404: 'Not Found',
1628
+ 500: 'Server Error',
1629
+ 501: 'Server Error'
1630
+ }
1631
+ });
1632
+ }
1633
+
1634
+ /**
1635
+ * @param data The data for the request.
1636
+ * @param data.requestBody
1637
+ * @returns UniRefund_ContractService_Refunds_RefundTableHeaders_RefundTableHeaderDto Success
1638
+ * @throws ApiError
1639
+ */
1640
+ public postApiContractServiceRefundTablesRefundTableHeaders(data: PostApiContractServiceRefundTablesRefundTableHeadersData = {}): CancelablePromise<PostApiContractServiceRefundTablesRefundTableHeadersResponse> {
1641
+ return this.httpRequest.request({
1642
+ method: 'POST',
1643
+ url: '/api/contract-service/refund-tables/refund-table-headers',
1644
+ body: data.requestBody,
1645
+ mediaType: 'application/json',
1646
+ errors: {
1647
+ 400: 'Bad Request',
1648
+ 401: 'Unauthorized',
1649
+ 403: 'Forbidden',
1650
+ 404: 'Not Found',
1651
+ 500: 'Server Error',
1652
+ 501: 'Server Error'
1653
+ }
1654
+ });
1655
+ }
1656
+
1657
+ /**
1658
+ * @param data The data for the request.
1659
+ * @param data.id
1660
+ * @param data.requestBody
1661
+ * @returns UniRefund_ContractService_Refunds_RefundTableDetails_RefundTableDetailDto Success
1662
+ * @throws ApiError
1663
+ */
1664
+ public postApiContractServiceRefundTablesRefundTableHeadersByIdRefundTableDetails(data: PostApiContractServiceRefundTablesRefundTableHeadersByIdRefundTableDetailsData): CancelablePromise<PostApiContractServiceRefundTablesRefundTableHeadersByIdRefundTableDetailsResponse> {
1665
+ return this.httpRequest.request({
1666
+ method: 'POST',
1667
+ url: '/api/contract-service/refund-tables/refund-table-headers/{id}/refund-table-details',
1668
+ path: {
1669
+ id: data.id
1670
+ },
1671
+ body: data.requestBody,
1672
+ mediaType: 'application/json',
1673
+ errors: {
1674
+ 400: 'Bad Request',
1675
+ 401: 'Unauthorized',
1676
+ 403: 'Forbidden',
1677
+ 404: 'Not Found',
1678
+ 500: 'Server Error',
1679
+ 501: 'Server Error'
1680
+ }
1681
+ });
1682
+ }
1683
+
1684
+ /**
1685
+ * @param data The data for the request.
1686
+ * @param data.id
1687
+ * @returns unknown Success
1688
+ * @throws ApiError
1689
+ */
1690
+ public deleteApiContractServiceRefundTablesRefundTableDetailsById(data: DeleteApiContractServiceRefundTablesRefundTableDetailsByIdData): CancelablePromise<DeleteApiContractServiceRefundTablesRefundTableDetailsByIdResponse> {
1691
+ return this.httpRequest.request({
1692
+ method: 'DELETE',
1693
+ url: '/api/contract-service/refund-tables/refund-table-details/{id}',
1694
+ path: {
1695
+ id: data.id
1696
+ },
1697
+ errors: {
1698
+ 400: 'Bad Request',
1699
+ 401: 'Unauthorized',
1700
+ 403: 'Forbidden',
1701
+ 404: 'Not Found',
1702
+ 500: 'Server Error',
1703
+ 501: 'Server Error'
1704
+ }
1705
+ });
1706
+ }
1707
+
1708
+ /**
1709
+ * @param data The data for the request.
1710
+ * @param data.skipCount
1711
+ * @param data.maxResultCount
1712
+ * @returns PagedResultDto_RefundFeeHeaderDto Success
1713
+ * @throws ApiError
1714
+ */
1715
+ public getApiContractServiceRefundTablesRefundFeeHeaders(data: GetApiContractServiceRefundTablesRefundFeeHeadersData = {}): CancelablePromise<GetApiContractServiceRefundTablesRefundFeeHeadersResponse> {
1716
+ return this.httpRequest.request({
1717
+ method: 'GET',
1718
+ url: '/api/contract-service/refund-tables/refund-fee-headers',
1719
+ query: {
1720
+ SkipCount: data.skipCount,
1721
+ MaxResultCount: data.maxResultCount
1722
+ },
1723
+ errors: {
1724
+ 400: 'Bad Request',
1725
+ 401: 'Unauthorized',
1726
+ 403: 'Forbidden',
1727
+ 404: 'Not Found',
1728
+ 500: 'Server Error',
1729
+ 501: 'Server Error'
1730
+ }
1731
+ });
1732
+ }
1733
+
1734
+ /**
1735
+ * @param data The data for the request.
1736
+ * @param data.requestBody
1737
+ * @returns UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto Success
1738
+ * @throws ApiError
1739
+ */
1740
+ public postApiContractServiceRefundTablesRefundFeeHeaders(data: PostApiContractServiceRefundTablesRefundFeeHeadersData = {}): CancelablePromise<PostApiContractServiceRefundTablesRefundFeeHeadersResponse> {
1741
+ return this.httpRequest.request({
1742
+ method: 'POST',
1743
+ url: '/api/contract-service/refund-tables/refund-fee-headers',
1744
+ body: data.requestBody,
1745
+ mediaType: 'application/json',
1746
+ errors: {
1747
+ 400: 'Bad Request',
1748
+ 401: 'Unauthorized',
1749
+ 403: 'Forbidden',
1750
+ 404: 'Not Found',
1751
+ 500: 'Server Error',
1752
+ 501: 'Server Error'
1753
+ }
1754
+ });
1755
+ }
1756
+
1757
+ /**
1758
+ * @param data The data for the request.
1759
+ * @param data.id
1760
+ * @returns UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto Success
1761
+ * @throws ApiError
1762
+ */
1763
+ public getApiContractServiceRefundTablesRefundFeeHeadersById(data: GetApiContractServiceRefundTablesRefundFeeHeadersByIdData): CancelablePromise<GetApiContractServiceRefundTablesRefundFeeHeadersByIdResponse> {
1764
+ return this.httpRequest.request({
1765
+ method: 'GET',
1766
+ url: '/api/contract-service/refund-tables/refund-fee-headers/{id}',
1767
+ path: {
1768
+ id: data.id
1769
+ },
1770
+ errors: {
1771
+ 400: 'Bad Request',
1772
+ 401: 'Unauthorized',
1773
+ 403: 'Forbidden',
1774
+ 404: 'Not Found',
1775
+ 500: 'Server Error',
1776
+ 501: 'Server Error'
1777
+ }
1778
+ });
1779
+ }
1780
+
1781
+ /**
1782
+ * @param data The data for the request.
1783
+ * @param data.id
1784
+ * @param data.requestBody
1785
+ * @returns UniRefund_ContractService_Refunds_RefundFeeHeaders_RefundFeeHeaderDto Success
1786
+ * @throws ApiError
1787
+ */
1788
+ public putApiContractServiceRefundTablesRefundFeeHeadersById(data: PutApiContractServiceRefundTablesRefundFeeHeadersByIdData): CancelablePromise<PutApiContractServiceRefundTablesRefundFeeHeadersByIdResponse> {
1789
+ return this.httpRequest.request({
1790
+ method: 'PUT',
1791
+ url: '/api/contract-service/refund-tables/refund-fee-headers/{id}',
1792
+ path: {
1793
+ id: data.id
1794
+ },
1795
+ body: data.requestBody,
1796
+ mediaType: 'application/json',
1797
+ errors: {
1798
+ 400: 'Bad Request',
1799
+ 401: 'Unauthorized',
1800
+ 403: 'Forbidden',
1801
+ 404: 'Not Found',
1802
+ 500: 'Server Error',
1803
+ 501: 'Server Error'
1804
+ }
1805
+ });
1806
+ }
1807
+
1808
+ /**
1809
+ * @param data The data for the request.
1810
+ * @param data.id
1811
+ * @returns unknown Success
1812
+ * @throws ApiError
1813
+ */
1814
+ public deleteApiContractServiceRefundTablesRefundFeeHeadersById(data: DeleteApiContractServiceRefundTablesRefundFeeHeadersByIdData): CancelablePromise<DeleteApiContractServiceRefundTablesRefundFeeHeadersByIdResponse> {
1815
+ return this.httpRequest.request({
1816
+ method: 'DELETE',
1817
+ url: '/api/contract-service/refund-tables/refund-fee-headers/{id}',
1818
+ path: {
1819
+ id: data.id
1820
+ },
1821
+ errors: {
1822
+ 400: 'Bad Request',
1823
+ 401: 'Unauthorized',
1824
+ 403: 'Forbidden',
1825
+ 404: 'Not Found',
1826
+ 500: 'Server Error',
1827
+ 501: 'Server Error'
1828
+ }
1829
+ });
1830
+ }
1831
+
1832
+ /**
1833
+ * @param data The data for the request.
1834
+ * @param data.id
1835
+ * @param data.requestBody
1836
+ * @returns UniRefund_ContractService_Refunds_RefundFeeDetails_RefundFeeDetailDto Success
1837
+ * @throws ApiError
1838
+ */
1839
+ public postApiContractServiceRefundTablesRefundFeeHeadersByIdRefundFeeDetails(data: PostApiContractServiceRefundTablesRefundFeeHeadersByIdRefundFeeDetailsData): CancelablePromise<PostApiContractServiceRefundTablesRefundFeeHeadersByIdRefundFeeDetailsResponse> {
1840
+ return this.httpRequest.request({
1841
+ method: 'POST',
1842
+ url: '/api/contract-service/refund-tables/refund-fee-headers/{id}/refund-fee-details',
1843
+ path: {
1844
+ id: data.id
1845
+ },
1846
+ body: data.requestBody,
1847
+ mediaType: 'application/json',
1848
+ errors: {
1849
+ 400: 'Bad Request',
1850
+ 401: 'Unauthorized',
1851
+ 403: 'Forbidden',
1852
+ 404: 'Not Found',
1853
+ 500: 'Server Error',
1854
+ 501: 'Server Error'
1855
+ }
1856
+ });
1857
+ }
1858
+
1859
+ /**
1860
+ * @param data The data for the request.
1861
+ * @param data.id
1862
+ * @returns unknown Success
1863
+ * @throws ApiError
1864
+ */
1865
+ public deleteApiContractServiceRefundTablesRefundFeeDetailsById(data: DeleteApiContractServiceRefundTablesRefundFeeDetailsByIdData): CancelablePromise<DeleteApiContractServiceRefundTablesRefundFeeDetailsByIdResponse> {
1866
+ return this.httpRequest.request({
1867
+ method: 'DELETE',
1868
+ url: '/api/contract-service/refund-tables/refund-fee-details/{id}',
1869
+ path: {
1870
+ id: data.id
1871
+ },
1872
+ errors: {
1873
+ 400: 'Bad Request',
1874
+ 401: 'Unauthorized',
1875
+ 403: 'Forbidden',
1876
+ 404: 'Not Found',
1877
+ 500: 'Server Error',
1878
+ 501: 'Server Error'
1879
+ }
1880
+ });
1881
+ }
1882
+
1883
1883
  }