@ayasofyazilim/saas 0.0.101 → 0.0.103

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (577) hide show
  1. package/.github/workflows/release.yaml +45 -45
  2. package/.github/workflows/update.yaml +93 -71
  3. package/.github/workflows/update_release.yaml +33 -33
  4. package/API_LIST.json +67 -0
  5. package/AccountService/AccountServiceClient.ts +68 -68
  6. package/AccountService/core/ApiError.ts +20 -20
  7. package/AccountService/core/ApiRequestOptions.ts +12 -12
  8. package/AccountService/core/ApiResult.ts +6 -6
  9. package/AccountService/core/BaseHttpRequest.ts +9 -9
  10. package/AccountService/core/CancelablePromise.ts +125 -125
  11. package/AccountService/core/FetchHttpRequest.ts +21 -21
  12. package/AccountService/core/OpenAPI.ts +55 -55
  13. package/AccountService/core/request.ts +340 -340
  14. package/AccountService/index.ts +8 -8
  15. package/AccountService/models/Volo_Abp_Account_AccountExternalProviderSettingsDto.ts +9 -9
  16. package/AccountService/models/Volo_Abp_Account_AccountRecaptchaSettingsDto.ts +14 -14
  17. package/AccountService/models/Volo_Abp_Account_AccountSettingsDto.ts +9 -9
  18. package/AccountService/models/Volo_Abp_Account_AccountTwoFactorSettingsDto.ts +11 -11
  19. package/AccountService/models/Volo_Abp_Account_AuthenticatorInfoDto.ts +9 -9
  20. package/AccountService/models/Volo_Abp_Account_ChangePasswordInput.ts +9 -9
  21. package/AccountService/models/Volo_Abp_Account_ConfirmEmailInput.ts +9 -9
  22. package/AccountService/models/Volo_Abp_Account_ConfirmPhoneNumberInput.ts +9 -9
  23. package/AccountService/models/Volo_Abp_Account_DelegateNewUserInput.ts +10 -10
  24. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderDto.ts +9 -9
  25. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemDto.ts +11 -11
  26. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto.ts +13 -13
  27. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettings.ts +12 -12
  28. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty.ts +9 -9
  29. package/AccountService/models/Volo_Abp_Account_IdentityUserConfirmationStateDto.ts +9 -9
  30. package/AccountService/models/Volo_Abp_Account_IsLinkedInput.ts +9 -9
  31. package/AccountService/models/Volo_Abp_Account_LinkUserDto.ts +12 -12
  32. package/AccountService/models/Volo_Abp_Account_LinkUserInput.ts +10 -10
  33. package/AccountService/models/Volo_Abp_Account_ProfileDto.ts +20 -20
  34. package/AccountService/models/Volo_Abp_Account_ProfilePictureSourceDto.ts +11 -11
  35. package/AccountService/models/Volo_Abp_Account_ProfilePictureType.ts +9 -9
  36. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult.ts +10 -10
  37. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LinkUserLoginInfo.ts +9 -9
  38. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LoginResultType.ts +12 -12
  39. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_UserLoginInfo.ts +11 -11
  40. package/AccountService/models/Volo_Abp_Account_RegisterDto.ts +15 -15
  41. package/AccountService/models/Volo_Abp_Account_ResetPasswordDto.ts +10 -10
  42. package/AccountService/models/Volo_Abp_Account_SendEmailConfirmationTokenDto.ts +11 -11
  43. package/AccountService/models/Volo_Abp_Account_SendPasswordResetCodeDto.ts +11 -11
  44. package/AccountService/models/Volo_Abp_Account_SendPhoneNumberConfirmationTokenDto.ts +9 -9
  45. package/AccountService/models/Volo_Abp_Account_SendTwoFactorCodeInput.ts +10 -10
  46. package/AccountService/models/Volo_Abp_Account_UnLinkUserInput.ts +9 -9
  47. package/AccountService/models/Volo_Abp_Account_UpdateExternalProviderDto.ts +12 -12
  48. package/AccountService/models/Volo_Abp_Account_UpdateProfileDto.ts +15 -15
  49. package/AccountService/models/Volo_Abp_Account_UserDelegationDto.ts +11 -11
  50. package/AccountService/models/Volo_Abp_Account_UserLookupDto.ts +9 -9
  51. package/AccountService/models/Volo_Abp_Account_VerifyAuthenticatorCodeDto.ts +8 -8
  52. package/AccountService/models/Volo_Abp_Account_VerifyAuthenticatorCodeInput.ts +8 -8
  53. package/AccountService/models/Volo_Abp_Account_VerifyEmailConfirmationTokenInput.ts +9 -9
  54. package/AccountService/models/Volo_Abp_Account_VerifyLinkLoginTokenInput.ts +10 -10
  55. package/AccountService/models/Volo_Abp_Account_VerifyLinkTokenInput.ts +10 -10
  56. package/AccountService/models/Volo_Abp_Account_VerifyPasswordResetTokenInput.ts +9 -9
  57. package/AccountService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -9
  58. package/AccountService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -10
  59. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -8
  60. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -30
  61. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -8
  62. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -8
  63. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -18
  64. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -9
  65. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -9
  66. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -8
  67. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -8
  68. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -17
  69. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -22
  70. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -14
  71. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -8
  72. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -10
  73. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -10
  74. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -9
  75. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -8
  76. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -13
  77. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -8
  78. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -8
  79. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -9
  80. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -19
  81. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -14
  82. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -8
  83. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -12
  84. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -8
  85. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -9
  86. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -10
  87. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -11
  88. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -11
  89. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -9
  90. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -8
  91. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -10
  92. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto.ts +11 -11
  93. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -8
  94. package/AccountService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -20
  95. package/AccountService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -11
  96. package/AccountService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -17
  97. package/AccountService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -11
  98. package/AccountService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -12
  99. package/AccountService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -13
  100. package/AccountService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -11
  101. package/AccountService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -17
  102. package/AccountService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -17
  103. package/AccountService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -9
  104. package/AccountService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -14
  105. package/AccountService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -13
  106. package/AccountService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -9
  107. package/AccountService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -9
  108. package/AccountService/models/Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour.ts +9 -9
  109. package/AccountService/models/Volo_Abp_Identity_IdentitySecurityLogDto.ts +21 -21
  110. package/AccountService/models/Volo_Abp_Identity_IdentityUserDto.ts +35 -35
  111. package/AccountService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -12
  112. package/AccountService/models/Volo_Abp_NameValue.ts +9 -9
  113. package/AccountService/schemas.gen.ts +5333 -5333
  114. package/AccountService/services/AbpApiDefinitionService.ts +34 -34
  115. package/AccountService/services/AbpApplicationConfigurationService.ts +34 -34
  116. package/AccountService/services/AbpApplicationLocalizationService.ts +37 -37
  117. package/AccountService/services/AbpTenantService.ts +58 -58
  118. package/AccountService/services/AccountExternalProviderService.ts +56 -56
  119. package/AccountService/services/AccountService.ts +545 -545
  120. package/AccountService/services/AccountSettingsService.ts +178 -178
  121. package/AccountService/services/DynamicClaimsService.ts +27 -27
  122. package/AccountService/services/LoginService.ts +99 -99
  123. package/AccountService/services/ProfileService.ts +155 -155
  124. package/AccountService/services/UserService.ts +313 -313
  125. package/AccountService/services.gen.ts +1539 -1539
  126. package/AccountService/types.gen.ts +3328 -3328
  127. package/AdministrationService/AdministrationServiceClient.ts +80 -80
  128. package/AdministrationService/core/ApiError.ts +20 -20
  129. package/AdministrationService/core/ApiRequestOptions.ts +12 -12
  130. package/AdministrationService/core/ApiResult.ts +6 -6
  131. package/AdministrationService/core/BaseHttpRequest.ts +9 -9
  132. package/AdministrationService/core/CancelablePromise.ts +125 -125
  133. package/AdministrationService/core/FetchHttpRequest.ts +21 -21
  134. package/AdministrationService/core/OpenAPI.ts +55 -55
  135. package/AdministrationService/core/request.ts +340 -340
  136. package/AdministrationService/index.ts +8 -8
  137. package/AdministrationService/models/System_Net_HttpStatusCode.ts +67 -67
  138. package/AdministrationService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -9
  139. package/AdministrationService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -10
  140. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -8
  141. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -30
  142. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -8
  143. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -8
  144. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -18
  145. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -9
  146. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -9
  147. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -8
  148. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -8
  149. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -17
  150. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -22
  151. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -14
  152. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -8
  153. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -10
  154. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -10
  155. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -9
  156. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -8
  157. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -13
  158. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -8
  159. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -8
  160. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -9
  161. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -19
  162. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -14
  163. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -8
  164. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -12
  165. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -8
  166. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -9
  167. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -10
  168. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -11
  169. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -11
  170. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -9
  171. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -8
  172. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -10
  173. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto.ts +11 -11
  174. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -8
  175. package/AdministrationService/models/Volo_Abp_AuditLogging_AuditLogActionDto.ts +16 -16
  176. package/AdministrationService/models/Volo_Abp_AuditLogging_AuditLogDto.ts +33 -33
  177. package/AdministrationService/models/Volo_Abp_AuditLogging_EntityChangeDto.ts +18 -18
  178. package/AdministrationService/models/Volo_Abp_AuditLogging_EntityChangeWithUsernameDto.ts +10 -10
  179. package/AdministrationService/models/Volo_Abp_AuditLogging_EntityPropertyChangeDto.ts +14 -14
  180. package/AdministrationService/models/Volo_Abp_AuditLogging_GetAverageExecutionDurationPerDayOutput.ts +8 -8
  181. package/AdministrationService/models/Volo_Abp_AuditLogging_GetErrorRateOutput.ts +8 -8
  182. package/AdministrationService/models/Volo_Abp_Auditing_EntityChangeType.ts +9 -9
  183. package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureDto.ts +17 -17
  184. package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureGroupDto.ts +11 -11
  185. package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureProviderDto.ts +9 -9
  186. package/AdministrationService/models/Volo_Abp_FeatureManagement_GetFeatureListResultDto.ts +9 -9
  187. package/AdministrationService/models/Volo_Abp_FeatureManagement_UpdateFeatureDto.ts +9 -9
  188. package/AdministrationService/models/Volo_Abp_FeatureManagement_UpdateFeaturesDto.ts +9 -9
  189. package/AdministrationService/models/Volo_Abp_Gdpr_DownloadTokenResultDto.ts +8 -8
  190. package/AdministrationService/models/Volo_Abp_Gdpr_GdprRequestDto.ts +10 -10
  191. package/AdministrationService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -20
  192. package/AdministrationService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -11
  193. package/AdministrationService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -17
  194. package/AdministrationService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -11
  195. package/AdministrationService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -12
  196. package/AdministrationService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -13
  197. package/AdministrationService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -11
  198. package/AdministrationService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -17
  199. package/AdministrationService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -17
  200. package/AdministrationService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -9
  201. package/AdministrationService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -14
  202. package/AdministrationService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -13
  203. package/AdministrationService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -9
  204. package/AdministrationService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -9
  205. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_CreateLanguageDto.ts +13 -13
  206. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_CultureInfoDto.ts +9 -9
  207. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageDto.ts +18 -18
  208. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageResourceDto.ts +8 -8
  209. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageTextDto.ts +13 -13
  210. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_UpdateLanguageDto.ts +12 -12
  211. package/AdministrationService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -12
  212. package/AdministrationService/models/Volo_Abp_NameValue.ts +9 -9
  213. package/AdministrationService/models/Volo_Abp_PermissionManagement_GetPermissionListResultDto.ts +10 -10
  214. package/AdministrationService/models/Volo_Abp_PermissionManagement_PermissionGrantInfoDto.ts +14 -14
  215. package/AdministrationService/models/Volo_Abp_PermissionManagement_PermissionGroupDto.ts +13 -13
  216. package/AdministrationService/models/Volo_Abp_PermissionManagement_ProviderInfoDto.ts +9 -9
  217. package/AdministrationService/models/Volo_Abp_PermissionManagement_UpdatePermissionDto.ts +9 -9
  218. package/AdministrationService/models/Volo_Abp_PermissionManagement_UpdatePermissionsDto.ts +9 -9
  219. package/AdministrationService/models/Volo_Abp_SettingManagement_EmailSettingsDto.ts +16 -16
  220. package/AdministrationService/models/Volo_Abp_SettingManagement_SendTestEmailInput.ts +11 -11
  221. package/AdministrationService/models/Volo_Abp_SettingManagement_UpdateEmailSettingsDto.ts +16 -16
  222. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_RestoreTemplateContentInput.ts +9 -9
  223. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_TemplateDefinitionDto.ts +13 -13
  224. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_TextTemplateContentDto.ts +10 -10
  225. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_UpdateTemplateContentInput.ts +10 -10
  226. package/AdministrationService/models/Volo_Abp_Validation_StringValues_IStringValueType.ts +11 -11
  227. package/AdministrationService/models/Volo_Abp_Validation_StringValues_IValueValidator.ts +9 -9
  228. package/AdministrationService/schemas.gen.ts +6745 -6745
  229. package/AdministrationService/services/AbpApiDefinitionService.ts +34 -34
  230. package/AdministrationService/services/AbpApplicationConfigurationService.ts +34 -34
  231. package/AdministrationService/services/AbpApplicationLocalizationService.ts +37 -37
  232. package/AdministrationService/services/AbpTenantService.ts +58 -58
  233. package/AdministrationService/services/AuditLogsService.ts +286 -286
  234. package/AdministrationService/services/EmailSettingsService.ts +76 -76
  235. package/AdministrationService/services/FeaturesService.ts +96 -96
  236. package/AdministrationService/services/GdprRequestService.ts +152 -152
  237. package/AdministrationService/services/LanguageTextsService.ts +157 -157
  238. package/AdministrationService/services/LanguagesService.ts +257 -257
  239. package/AdministrationService/services/PermissionsService.ts +69 -69
  240. package/AdministrationService/services/TextTemplateContentsService.ts +85 -85
  241. package/AdministrationService/services/TextTemplateDefinitionsService.ts +69 -69
  242. package/AdministrationService/services/TimeZoneSettingsService.ts +70 -70
  243. package/AdministrationService/services.gen.ts +1451 -1451
  244. package/AdministrationService/types.gen.ts +3007 -3007
  245. package/BackerService/BackerServiceClient.ts +50 -50
  246. package/BackerService/core/ApiError.ts +20 -20
  247. package/BackerService/core/ApiRequestOptions.ts +12 -12
  248. package/BackerService/core/ApiResult.ts +6 -6
  249. package/BackerService/core/BaseHttpRequest.ts +9 -9
  250. package/BackerService/core/CancelablePromise.ts +125 -125
  251. package/BackerService/core/FetchHttpRequest.ts +21 -21
  252. package/BackerService/core/OpenAPI.ts +55 -55
  253. package/BackerService/core/request.ts +340 -340
  254. package/BackerService/index.ts +8 -8
  255. package/BackerService/schemas.gen.ts +12444 -12444
  256. package/BackerService/services.gen.ts +866 -866
  257. package/BackerService/types.gen.ts +2170 -2170
  258. package/CRMService/core/ApiRequestOptions.ts +16 -8
  259. package/CRMService/core/OpenAPI.ts +3 -3
  260. package/CRMService/core/request.ts +14 -5
  261. package/CRMService/index.ts +3 -4
  262. package/CRMService/schemas.gen.ts +52 -0
  263. package/CRMService/sdk.gen.ts +3193 -0
  264. package/CRMService/types.gen.ts +401 -4471
  265. package/ContractService/ContractServiceClient.ts +65 -65
  266. package/ContractService/core/ApiError.ts +20 -20
  267. package/ContractService/core/ApiRequestOptions.ts +12 -12
  268. package/ContractService/core/ApiResult.ts +6 -6
  269. package/ContractService/core/BaseHttpRequest.ts +9 -9
  270. package/ContractService/core/CancelablePromise.ts +125 -125
  271. package/ContractService/core/FetchHttpRequest.ts +21 -21
  272. package/ContractService/core/OpenAPI.ts +55 -55
  273. package/ContractService/core/request.ts +340 -340
  274. package/ContractService/index.ts +8 -8
  275. package/ContractService/schemas.gen.ts +12076 -12076
  276. package/ContractService/services.gen.ts +1882 -1882
  277. package/ContractService/types.gen.ts +4145 -4145
  278. package/ExportValidationService/ExportValidationServiceClient.ts +44 -44
  279. package/ExportValidationService/core/ApiError.ts +20 -20
  280. package/ExportValidationService/core/ApiRequestOptions.ts +12 -12
  281. package/ExportValidationService/core/ApiResult.ts +6 -6
  282. package/ExportValidationService/core/BaseHttpRequest.ts +9 -9
  283. package/ExportValidationService/core/CancelablePromise.ts +125 -125
  284. package/ExportValidationService/core/FetchHttpRequest.ts +21 -21
  285. package/ExportValidationService/core/OpenAPI.ts +55 -55
  286. package/ExportValidationService/core/request.ts +340 -340
  287. package/ExportValidationService/index.ts +8 -8
  288. package/ExportValidationService/schemas.gen.ts +3998 -3998
  289. package/ExportValidationService/services.gen.ts +260 -260
  290. package/ExportValidationService/types.gen.ts +818 -818
  291. package/FinanceService/FinanceServiceClient.ts +47 -47
  292. package/FinanceService/core/ApiError.ts +20 -20
  293. package/FinanceService/core/ApiRequestOptions.ts +12 -12
  294. package/FinanceService/core/ApiResult.ts +6 -6
  295. package/FinanceService/core/BaseHttpRequest.ts +9 -9
  296. package/FinanceService/core/CancelablePromise.ts +125 -125
  297. package/FinanceService/core/FetchHttpRequest.ts +21 -21
  298. package/FinanceService/core/OpenAPI.ts +55 -55
  299. package/FinanceService/core/request.ts +340 -340
  300. package/FinanceService/index.ts +8 -8
  301. package/FinanceService/schemas.gen.ts +5006 -5006
  302. package/FinanceService/services.gen.ts +339 -339
  303. package/FinanceService/types.gen.ts +1128 -1128
  304. package/FundraiserService/FundraiserServiceClient.ts +47 -47
  305. package/FundraiserService/core/ApiError.ts +20 -20
  306. package/FundraiserService/core/ApiRequestOptions.ts +12 -12
  307. package/FundraiserService/core/ApiResult.ts +6 -6
  308. package/FundraiserService/core/BaseHttpRequest.ts +9 -9
  309. package/FundraiserService/core/CancelablePromise.ts +125 -125
  310. package/FundraiserService/core/FetchHttpRequest.ts +21 -21
  311. package/FundraiserService/core/OpenAPI.ts +55 -55
  312. package/FundraiserService/core/request.ts +340 -340
  313. package/FundraiserService/index.ts +8 -8
  314. package/FundraiserService/schemas.gen.ts +11548 -11548
  315. package/FundraiserService/services.gen.ts +627 -627
  316. package/FundraiserService/types.gen.ts +1793 -1793
  317. package/IdentityService/IdentityServiceClient.ts +86 -86
  318. package/IdentityService/core/ApiError.ts +20 -20
  319. package/IdentityService/core/ApiRequestOptions.ts +12 -12
  320. package/IdentityService/core/ApiResult.ts +6 -6
  321. package/IdentityService/core/BaseHttpRequest.ts +9 -9
  322. package/IdentityService/core/CancelablePromise.ts +125 -125
  323. package/IdentityService/core/FetchHttpRequest.ts +21 -21
  324. package/IdentityService/core/OpenAPI.ts +55 -55
  325. package/IdentityService/core/request.ts +340 -340
  326. package/IdentityService/index.ts +8 -8
  327. package/IdentityService/models/Volo_Abp_Account_AccountExternalProviderSettingsDto.ts +9 -9
  328. package/IdentityService/models/Volo_Abp_Account_AccountRecaptchaSettingsDto.ts +14 -14
  329. package/IdentityService/models/Volo_Abp_Account_AccountSettingsDto.ts +9 -9
  330. package/IdentityService/models/Volo_Abp_Account_AccountTwoFactorSettingsDto.ts +11 -11
  331. package/IdentityService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettings.ts +12 -12
  332. package/IdentityService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty.ts +9 -9
  333. package/IdentityService/models/Volo_Abp_Account_UpdateExternalProviderDto.ts +12 -12
  334. package/IdentityService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -9
  335. package/IdentityService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -10
  336. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -8
  337. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -30
  338. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -8
  339. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -8
  340. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -18
  341. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -9
  342. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -9
  343. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -8
  344. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -8
  345. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -17
  346. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -22
  347. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -14
  348. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -8
  349. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -10
  350. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -10
  351. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -9
  352. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -8
  353. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -13
  354. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -8
  355. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -8
  356. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -9
  357. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -19
  358. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -14
  359. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -8
  360. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -12
  361. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -8
  362. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -9
  363. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -10
  364. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -11
  365. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -11
  366. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -9
  367. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -8
  368. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -10
  369. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -8
  370. package/IdentityService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -20
  371. package/IdentityService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -11
  372. package/IdentityService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -17
  373. package/IdentityService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -11
  374. package/IdentityService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -12
  375. package/IdentityService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -13
  376. package/IdentityService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -11
  377. package/IdentityService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -17
  378. package/IdentityService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -17
  379. package/IdentityService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -9
  380. package/IdentityService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -14
  381. package/IdentityService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -13
  382. package/IdentityService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -9
  383. package/IdentityService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -9
  384. package/IdentityService/models/Volo_Abp_Identity_ClaimTypeDto.ts +19 -19
  385. package/IdentityService/models/Volo_Abp_Identity_CreateClaimTypeDto.ts +15 -15
  386. package/IdentityService/models/Volo_Abp_Identity_DownloadTokenResultDto.ts +8 -8
  387. package/IdentityService/models/Volo_Abp_Identity_ExternalLoginProviderDto.ts +9 -9
  388. package/IdentityService/models/Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour.ts +9 -9
  389. package/IdentityService/models/Volo_Abp_Identity_IdentityClaimValueType.ts +10 -10
  390. package/IdentityService/models/Volo_Abp_Identity_IdentityLdapSettingsDto.ts +15 -15
  391. package/IdentityService/models/Volo_Abp_Identity_IdentityLockoutSettingsDto.ts +10 -10
  392. package/IdentityService/models/Volo_Abp_Identity_IdentityOAuthSettingsDto.ts +15 -15
  393. package/IdentityService/models/Volo_Abp_Identity_IdentityPasswordSettingsDto.ts +15 -15
  394. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleClaimDto.ts +10 -10
  395. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleCreateDto.ts +11 -11
  396. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleDto.ts +15 -15
  397. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleLookupDto.ts +9 -9
  398. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleUpdateDto.ts +12 -12
  399. package/IdentityService/models/Volo_Abp_Identity_IdentitySecurityLogDto.ts +21 -21
  400. package/IdentityService/models/Volo_Abp_Identity_IdentitySettingsDto.ts +15 -15
  401. package/IdentityService/models/Volo_Abp_Identity_IdentitySignInSettingsDto.ts +10 -10
  402. package/IdentityService/models/Volo_Abp_Identity_IdentityUserClaimDto.ts +10 -10
  403. package/IdentityService/models/Volo_Abp_Identity_IdentityUserCreateDto.ts +20 -20
  404. package/IdentityService/models/Volo_Abp_Identity_IdentityUserDto.ts +35 -35
  405. package/IdentityService/models/Volo_Abp_Identity_IdentityUserSettingsDto.ts +9 -9
  406. package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdateDto.ts +19 -19
  407. package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdatePasswordInput.ts +8 -8
  408. package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdateRolesDto.ts +8 -8
  409. package/IdentityService/models/Volo_Abp_Identity_ImportExternalUserInput.ts +10 -10
  410. package/IdentityService/models/Volo_Abp_Identity_ImportUsersFromFileOutput.ts +12 -12
  411. package/IdentityService/models/Volo_Abp_Identity_ImportUsersFromFileType.ts +8 -8
  412. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitCreateDto.ts +10 -10
  413. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitDto.ts +21 -21
  414. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitLookupDto.ts +9 -9
  415. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitMoveInput.ts +8 -8
  416. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitRoleDto.ts +11 -11
  417. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitRoleInput.ts +8 -8
  418. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitUpdateDto.ts +10 -10
  419. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitUserInput.ts +8 -8
  420. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitWithDetailsDto.ts +23 -23
  421. package/IdentityService/models/Volo_Abp_Identity_UpdateClaimTypeDto.ts +16 -16
  422. package/IdentityService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -12
  423. package/IdentityService/models/Volo_Abp_NameValue.ts +9 -9
  424. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationDto.ts +29 -29
  425. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationTokenLifetimeDto.ts +13 -13
  426. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_CreateApplicationInput.ts +28 -28
  427. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_UpdateApplicationInput.ts +28 -28
  428. package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_CreateScopeInput.ts +12 -12
  429. package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_ScopeDto.ts +14 -14
  430. package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_UpdateScopeInput.ts +12 -12
  431. package/IdentityService/models/Volo_Abp_Users_UserData.ts +18 -18
  432. package/IdentityService/schemas.gen.ts +6928 -6928
  433. package/IdentityService/services/AbpApiDefinitionService.ts +34 -34
  434. package/IdentityService/services/AbpApplicationConfigurationService.ts +34 -34
  435. package/IdentityService/services/AbpApplicationLocalizationService.ts +37 -37
  436. package/IdentityService/services/AccountSettingsService.ts +178 -178
  437. package/IdentityService/services/ApplicationsService.ts +199 -199
  438. package/IdentityService/services/ClaimTypeService.ts +149 -149
  439. package/IdentityService/services/ExternalLoginService.ts +27 -27
  440. package/IdentityService/services/OrganizationUnitService.ts +539 -539
  441. package/IdentityService/services/RoleService.ts +269 -269
  442. package/IdentityService/services/ScopesService.ts +164 -164
  443. package/IdentityService/services/SecurityLogService.ts +174 -174
  444. package/IdentityService/services/SettingsService.ts +135 -135
  445. package/IdentityService/services/UserIntegrationService.ts +144 -144
  446. package/IdentityService/services/UserLookupService.ts +120 -120
  447. package/IdentityService/services/UserService.ts +937 -937
  448. package/IdentityService/services.gen.ts +3154 -3154
  449. package/IdentityService/types.gen.ts +5874 -5874
  450. package/LocationService/LocationServiceClient.ts +74 -74
  451. package/LocationService/core/ApiError.ts +20 -20
  452. package/LocationService/core/ApiRequestOptions.ts +12 -12
  453. package/LocationService/core/ApiResult.ts +6 -6
  454. package/LocationService/core/BaseHttpRequest.ts +9 -9
  455. package/LocationService/core/CancelablePromise.ts +125 -125
  456. package/LocationService/core/FetchHttpRequest.ts +21 -21
  457. package/LocationService/core/OpenAPI.ts +55 -55
  458. package/LocationService/core/request.ts +340 -340
  459. package/LocationService/index.ts +8 -8
  460. package/LocationService/schemas.gen.ts +6635 -6635
  461. package/LocationService/services.gen.ts +1797 -1797
  462. package/LocationService/types.gen.ts +3738 -3738
  463. package/MerchantService/MerchantServiceClient.ts +77 -77
  464. package/MerchantService/core/ApiError.ts +20 -20
  465. package/MerchantService/core/ApiRequestOptions.ts +12 -12
  466. package/MerchantService/core/ApiResult.ts +6 -6
  467. package/MerchantService/core/BaseHttpRequest.ts +9 -9
  468. package/MerchantService/core/CancelablePromise.ts +125 -125
  469. package/MerchantService/core/FetchHttpRequest.ts +21 -21
  470. package/MerchantService/core/OpenAPI.ts +55 -55
  471. package/MerchantService/core/request.ts +340 -340
  472. package/MerchantService/index.ts +8 -8
  473. package/MerchantService/schemas.gen.ts +14764 -14764
  474. package/MerchantService/services.gen.ts +1602 -1602
  475. package/MerchantService/types.gen.ts +18875 -18875
  476. package/ProjectService/ProjectServiceClient.ts +47 -47
  477. package/ProjectService/core/ApiError.ts +20 -20
  478. package/ProjectService/core/ApiRequestOptions.ts +12 -12
  479. package/ProjectService/core/ApiResult.ts +6 -6
  480. package/ProjectService/core/BaseHttpRequest.ts +9 -9
  481. package/ProjectService/core/CancelablePromise.ts +125 -125
  482. package/ProjectService/core/FetchHttpRequest.ts +21 -21
  483. package/ProjectService/core/OpenAPI.ts +55 -55
  484. package/ProjectService/core/request.ts +340 -340
  485. package/ProjectService/index.ts +8 -8
  486. package/ProjectService/schemas.gen.ts +5147 -5147
  487. package/ProjectService/services.gen.ts +492 -492
  488. package/ProjectService/types.gen.ts +1303 -1303
  489. package/README.md +40 -39
  490. package/RefundService/RefundServiceClient.ts +44 -44
  491. package/RefundService/core/ApiError.ts +20 -20
  492. package/RefundService/core/ApiRequestOptions.ts +12 -12
  493. package/RefundService/core/ApiResult.ts +6 -6
  494. package/RefundService/core/BaseHttpRequest.ts +9 -9
  495. package/RefundService/core/CancelablePromise.ts +125 -125
  496. package/RefundService/core/FetchHttpRequest.ts +21 -21
  497. package/RefundService/core/OpenAPI.ts +55 -55
  498. package/RefundService/core/request.ts +340 -340
  499. package/RefundService/index.ts +8 -8
  500. package/RefundService/schemas.gen.ts +5237 -5237
  501. package/RefundService/services.gen.ts +347 -347
  502. package/RefundService/types.gen.ts +1042 -1042
  503. package/SaasService/SaasServiceClient.ts +65 -65
  504. package/SaasService/core/ApiError.ts +20 -20
  505. package/SaasService/core/ApiRequestOptions.ts +12 -12
  506. package/SaasService/core/ApiResult.ts +6 -6
  507. package/SaasService/core/BaseHttpRequest.ts +9 -9
  508. package/SaasService/core/CancelablePromise.ts +125 -125
  509. package/SaasService/core/FetchHttpRequest.ts +21 -21
  510. package/SaasService/core/OpenAPI.ts +55 -55
  511. package/SaasService/core/request.ts +340 -340
  512. package/SaasService/index.ts +8 -8
  513. package/SaasService/schemas.gen.ts +5345 -5345
  514. package/SaasService/services.gen.ts +1329 -1329
  515. package/SaasService/types.gen.ts +2737 -2737
  516. package/SettingService/SettingServiceClient.ts +59 -59
  517. package/SettingService/core/ApiError.ts +20 -20
  518. package/SettingService/core/ApiRequestOptions.ts +12 -12
  519. package/SettingService/core/ApiResult.ts +6 -6
  520. package/SettingService/core/BaseHttpRequest.ts +9 -9
  521. package/SettingService/core/CancelablePromise.ts +125 -125
  522. package/SettingService/core/FetchHttpRequest.ts +21 -21
  523. package/SettingService/core/OpenAPI.ts +55 -55
  524. package/SettingService/core/request.ts +340 -340
  525. package/SettingService/index.ts +8 -8
  526. package/SettingService/schemas.gen.ts +5223 -5223
  527. package/SettingService/services.gen.ts +758 -758
  528. package/SettingService/types.gen.ts +1800 -1800
  529. package/TagService/TagServiceClient.ts +47 -47
  530. package/TagService/core/ApiError.ts +20 -20
  531. package/TagService/core/ApiRequestOptions.ts +12 -12
  532. package/TagService/core/ApiResult.ts +6 -6
  533. package/TagService/core/BaseHttpRequest.ts +9 -9
  534. package/TagService/core/CancelablePromise.ts +125 -125
  535. package/TagService/core/FetchHttpRequest.ts +21 -21
  536. package/TagService/core/OpenAPI.ts +55 -55
  537. package/TagService/core/request.ts +340 -340
  538. package/TagService/index.ts +8 -8
  539. package/TagService/schemas.gen.ts +5830 -5830
  540. package/TagService/services.gen.ts +556 -556
  541. package/TagService/types.gen.ts +1487 -1487
  542. package/TravellerService/TravellerServiceClient.ts +59 -59
  543. package/TravellerService/core/ApiError.ts +20 -20
  544. package/TravellerService/core/ApiRequestOptions.ts +12 -12
  545. package/TravellerService/core/ApiResult.ts +6 -6
  546. package/TravellerService/core/BaseHttpRequest.ts +9 -9
  547. package/TravellerService/core/CancelablePromise.ts +125 -125
  548. package/TravellerService/core/FetchHttpRequest.ts +21 -21
  549. package/TravellerService/core/OpenAPI.ts +55 -55
  550. package/TravellerService/core/request.ts +340 -340
  551. package/TravellerService/index.ts +8 -8
  552. package/TravellerService/schemas.gen.ts +6396 -6396
  553. package/TravellerService/services.gen.ts +949 -949
  554. package/TravellerService/types.gen.ts +2220 -2220
  555. package/index.mjs +38 -0
  556. package/package.json +37 -41
  557. package/CRMService/CRMServiceClient.ts +0 -77
  558. package/CRMService/core/BaseHttpRequest.ts +0 -10
  559. package/CRMService/core/FetchHttpRequest.ts +0 -22
  560. package/CRMService/services.gen.ts +0 -3267
  561. package/ProjectService.json +0 -2938
  562. package/generator.mjs +0 -221
  563. package/index.ts +0 -2
  564. package/swagger.json +0 -4795
  565. package/upwithcrowdService/core/ApiError.ts +0 -21
  566. package/upwithcrowdService/core/ApiRequestOptions.ts +0 -13
  567. package/upwithcrowdService/core/ApiResult.ts +0 -7
  568. package/upwithcrowdService/core/BaseHttpRequest.ts +0 -10
  569. package/upwithcrowdService/core/CancelablePromise.ts +0 -126
  570. package/upwithcrowdService/core/FetchHttpRequest.ts +0 -22
  571. package/upwithcrowdService/core/OpenAPI.ts +0 -56
  572. package/upwithcrowdService/core/request.ts +0 -341
  573. package/upwithcrowdService/index.ts +0 -9
  574. package/upwithcrowdService/schemas.gen.ts +0 -11974
  575. package/upwithcrowdService/services.gen.ts +0 -6556
  576. package/upwithcrowdService/types.gen.ts +0 -12239
  577. package/upwithcrowdService/upwithcrowdServiceClient.ts +0 -161
@@ -0,0 +1,3193 @@
1
+ // This file is auto-generated by @hey-api/openapi-ts
2
+
3
+ import type { CancelablePromise } from './core/CancelablePromise';
4
+ import { OpenAPI } from './core/OpenAPI';
5
+ import { request as __request } from './core/request';
6
+ import type { GetApiAbpApiDefinitionData, GetApiAbpApiDefinitionResponse, GetApiAbpApplicationConfigurationData, GetApiAbpApplicationConfigurationResponse, GetApiAbpApplicationLocalizationData, GetApiAbpApplicationLocalizationResponse, GetApiCrmServiceAffiliationCodesData, GetApiCrmServiceAffiliationCodesResponse, PostApiCrmServiceAffiliationCodesData, PostApiCrmServiceAffiliationCodesResponse, GetApiCrmServiceAffiliationCodesByIdData, GetApiCrmServiceAffiliationCodesByIdResponse, PutApiCrmServiceAffiliationCodesByIdData, PutApiCrmServiceAffiliationCodesByIdResponse, DeleteApiCrmServiceAffiliationCodesByIdData, DeleteApiCrmServiceAffiliationCodesByIdResponse, PostApiCrmServiceAffiliationCodesByIdTranslationData, PostApiCrmServiceAffiliationCodesByIdTranslationResponse, PutApiCrmServiceAffiliationCodesByIdTranslationData, PutApiCrmServiceAffiliationCodesByIdTranslationResponse, GetApiCrmServiceAffiliationCodesByIdExistByIdAsyncData, GetApiCrmServiceAffiliationCodesByIdExistByIdAsyncResponse, GetApiCrmServiceCustomsData, GetApiCrmServiceCustomsResponse, GetApiCrmServiceCustomsByIdDetailData, GetApiCrmServiceCustomsByIdDetailResponse, GetApiCrmServiceCustomsByIdSubCustomsData, GetApiCrmServiceCustomsByIdSubCustomsResponse, PostApiCrmServiceCustomsWithComponentsData, PostApiCrmServiceCustomsWithComponentsResponse, DeleteApiCrmServiceCustomsByIdWithComponentsData, DeleteApiCrmServiceCustomsByIdWithComponentsResponse, PostApiCrmServiceCustomsByIdAffiliationsData, PostApiCrmServiceCustomsByIdAffiliationsResponse, GetApiCrmServiceCustomsByIdAffiliationsData, GetApiCrmServiceCustomsByIdAffiliationsResponse, DeleteApiCrmServiceCustomsByIdAffiliationsByAffiliationIdData, DeleteApiCrmServiceCustomsByIdAffiliationsByAffiliationIdResponse, PutApiCrmServiceCustomsByIdOrganizationsByOrganizationIdData, PutApiCrmServiceCustomsByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceCustomsByIdTelephonesByTelephoneIdData, PutApiCrmServiceCustomsByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceCustomsByIdAddressesByAddressIdData, PutApiCrmServiceCustomsByIdAddressesByAddressIdResponse, PutApiCrmServiceCustomsByIdEmailsByEmailIdData, PutApiCrmServiceCustomsByIdEmailsByEmailIdResponse, GetApiCrmServiceCustomsByIdAffilatedIndividualsData, GetApiCrmServiceCustomsByIdAffilatedIndividualsResponse, GetIntegrationApiCustomsByIdExistData, GetIntegrationApiCustomsByIdExistResponse, GetIntegrationApiCustomsNamesData, GetIntegrationApiCustomsNamesResponse, PostApiCrmServiceIndividualsWithComponentsData, PostApiCrmServiceIndividualsWithComponentsResponse, PostApiCrmServiceIndividualsByIdAbpUserAccountData, PostApiCrmServiceIndividualsByIdAbpUserAccountResponse, DeleteApiCrmServiceIndividualsByIdData, DeleteApiCrmServiceIndividualsByIdResponse, GetApiCrmServiceIndividualsByIdData, GetApiCrmServiceIndividualsByIdResponse, GetApiCrmServiceIndividualsData, GetApiCrmServiceIndividualsResponse, GetApiCrmServiceIndividualsByIdAffiliationsData, GetApiCrmServiceIndividualsByIdAffiliationsResponse, GetApiCrmServiceMerchantsData, GetApiCrmServiceMerchantsResponse, GetApiCrmServiceMerchantsByIdData, GetApiCrmServiceMerchantsByIdResponse, PutApiCrmServiceMerchantsByIdData, PutApiCrmServiceMerchantsByIdResponse, GetApiCrmServiceMerchantsByIdDetailData, GetApiCrmServiceMerchantsByIdDetailResponse, GetApiCrmServiceMerchantsByIdSubMerchantsData, GetApiCrmServiceMerchantsByIdSubMerchantsResponse, PostApiCrmServiceMerchantsWithComponentsData, PostApiCrmServiceMerchantsWithComponentsResponse, DeleteApiCrmServiceMerchantsByIdWithComponentsData, DeleteApiCrmServiceMerchantsByIdWithComponentsResponse, GetApiCrmServiceMerchantsByIdAffiliationsData, GetApiCrmServiceMerchantsByIdAffiliationsResponse, PostApiCrmServiceMerchantsByIdAffiliationsData, PostApiCrmServiceMerchantsByIdAffiliationsResponse, DeleteApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdData, DeleteApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdResponse, PutApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdData, PutApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdResponse, PutApiCrmServiceMerchantsByIdOrganizationsByOrganizationIdData, PutApiCrmServiceMerchantsByIdOrganizationsByOrganizationIdResponse, PostApiCrmServiceMerchantsBulkProductGroupMerchantsData, PostApiCrmServiceMerchantsBulkProductGroupMerchantsResponse, GetApiCrmServiceMerchantsByIdTelephonesData, GetApiCrmServiceMerchantsByIdTelephonesResponse, PutApiCrmServiceMerchantsByIdTelephonesByTelephoneIdData, PutApiCrmServiceMerchantsByIdTelephonesByTelephoneIdResponse, GetApiCrmServiceMerchantsByIdAddressesData, GetApiCrmServiceMerchantsByIdAddressesResponse, PutApiCrmServiceMerchantsByIdAddressesByAddressIdData, PutApiCrmServiceMerchantsByIdAddressesByAddressIdResponse, GetApiCrmServiceMerchantsByIdEmailsData, GetApiCrmServiceMerchantsByIdEmailsResponse, PutApiCrmServiceMerchantsByIdEmailsByEmailIdData, PutApiCrmServiceMerchantsByIdEmailsByEmailIdResponse, PutApiCrmServiceMerchantsByIdIndividualByIndividualIdNameByNameIdData, PutApiCrmServiceMerchantsByIdIndividualByIndividualIdNameByNameIdResponse, PutApiCrmServiceMerchantsByIdIndividualByIndividualIdPersonalSummaryByPersonalSummaryIdData, PutApiCrmServiceMerchantsByIdIndividualByIndividualIdPersonalSummaryByPersonalSummaryIdResponse, GetIntegrationApiMerchantsByIdBasicInformationData, GetIntegrationApiMerchantsByIdBasicInformationResponse, GetIntegrationApiMerchantsInfoData, GetIntegrationApiMerchantsInfoResponse, GetIntegrationApiMerchantsByIdParentIdOrSelfIdData, GetIntegrationApiMerchantsByIdParentIdOrSelfIdResponse, GetIntegrationApiMerchantsByIdSubsData, GetIntegrationApiMerchantsByIdSubsResponse, GetIntegrationApiMerchantsNamesData, GetIntegrationApiMerchantsNamesResponse, GetIntegrationApiMerchantsByIdEnsureExistData, GetIntegrationApiMerchantsByIdEnsureExistResponse, GetIntegrationApiMerchantsEnsureExistManyData, GetIntegrationApiMerchantsEnsureExistManyResponse, GetIntegrationApiMerchantsData, GetIntegrationApiMerchantsResponse, GetIntegrationApiMerchantsByIdStoresData, GetIntegrationApiMerchantsByIdStoresResponse, GetIntegrationApiMerchantsByIdDetailData, GetIntegrationApiMerchantsByIdDetailResponse, GetIntegrationApiMerchantsDetailsListData, GetIntegrationApiMerchantsDetailsListResponse, PostApiCrmServiceOrganizationsWithComponentsData, PostApiCrmServiceOrganizationsWithComponentsResponse, GetApiCrmServiceOrganizationsData, GetApiCrmServiceOrganizationsResponse, GetApiCrmServiceRefundPointsData, GetApiCrmServiceRefundPointsResponse, GetApiCrmServiceRefundPointsAccessibleData, GetApiCrmServiceRefundPointsAccessibleResponse, GetApiCrmServiceRefundPointsByIdData, GetApiCrmServiceRefundPointsByIdResponse, GetApiCrmServiceRefundPointsByIdDetailData, GetApiCrmServiceRefundPointsByIdDetailResponse, GetApiCrmServiceRefundPointsByIdSubRefundPointsData, GetApiCrmServiceRefundPointsByIdSubRefundPointsResponse, PostApiCrmServiceRefundPointsWithComponentsData, PostApiCrmServiceRefundPointsWithComponentsResponse, DeleteApiCrmServiceRefundPointsByIdWithComponentsData, DeleteApiCrmServiceRefundPointsByIdWithComponentsResponse, PostApiCrmServiceRefundPointsByIdAffiliationsData, PostApiCrmServiceRefundPointsByIdAffiliationsResponse, GetApiCrmServiceRefundPointsByIdAffiliationsData, GetApiCrmServiceRefundPointsByIdAffiliationsResponse, DeleteApiCrmServiceRefundPointsByIdAffiliationsByAffiliationIdData, DeleteApiCrmServiceRefundPointsByIdAffiliationsByAffiliationIdResponse, PutApiCrmServiceRefundPointsByIdOrganizationsByOrganizationIdData, PutApiCrmServiceRefundPointsByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceRefundPointsByIdTelephonesByTelephoneIdData, PutApiCrmServiceRefundPointsByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceRefundPointsByIdAddressesByAddressIdData, PutApiCrmServiceRefundPointsByIdAddressesByAddressIdResponse, PutApiCrmServiceRefundPointsByIdEmailsByEmailIdData, PutApiCrmServiceRefundPointsByIdEmailsByEmailIdResponse, GetApiCrmServiceRefundPointsByIdAffiliatedIndividualData, GetApiCrmServiceRefundPointsByIdAffiliatedIndividualResponse, GetApiCrmServiceRefundPointsByIdAddressesData, GetApiCrmServiceRefundPointsByIdAddressesResponse, GetIntegrationApiRefundPointsByIdParentIdOrSelfIdData, GetIntegrationApiRefundPointsByIdParentIdOrSelfIdResponse, GetIntegrationApiRefundPointsData, GetIntegrationApiRefundPointsResponse, GetIntegrationApiRefundPointsByIdDetailForRefundData, GetIntegrationApiRefundPointsByIdDetailForRefundResponse, GetIntegrationApiRefundPointsRefundPointNamesData, GetIntegrationApiRefundPointsRefundPointNamesResponse, GetIntegrationApiRefundPointsByIdExistData, GetIntegrationApiRefundPointsByIdExistResponse, GetIntegrationApiRefundPointsByIdBasicInformationData, GetIntegrationApiRefundPointsByIdBasicInformationResponse, GetApiCrmServiceTaxFreesData, GetApiCrmServiceTaxFreesResponse, GetApiCrmServiceTaxFreesByIdDetailData, GetApiCrmServiceTaxFreesByIdDetailResponse, GetApiCrmServiceTaxFreesByIdSubTaxFreeData, GetApiCrmServiceTaxFreesByIdSubTaxFreeResponse, PostApiCrmServiceTaxFreesWithComponentsData, PostApiCrmServiceTaxFreesWithComponentsResponse, DeleteApiCrmServiceTaxFreesByIdWithComponentsData, DeleteApiCrmServiceTaxFreesByIdWithComponentsResponse, PostApiCrmServiceTaxFreesByIdAffiliationsData, PostApiCrmServiceTaxFreesByIdAffiliationsResponse, GetApiCrmServiceTaxFreesByIdAffiliationsData, GetApiCrmServiceTaxFreesByIdAffiliationsResponse, DeleteApiCrmServiceTaxFreesByIdAffiliationsByAffiliationIdData, DeleteApiCrmServiceTaxFreesByIdAffiliationsByAffiliationIdResponse, PutApiCrmServiceTaxFreesByIdOrganizationsByOrganizationIdData, PutApiCrmServiceTaxFreesByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceTaxFreesByIdTelephonesByTelephoneIdData, PutApiCrmServiceTaxFreesByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceTaxFreesByIdAddressesByAddressIdData, PutApiCrmServiceTaxFreesByIdAddressesByAddressIdResponse, PutApiCrmServiceTaxFreesByIdEmailsByEmailIdData, PutApiCrmServiceTaxFreesByIdEmailsByEmailIdResponse, GetApiCrmServiceTaxFreesByIdAffiliatedIndividualsData, GetApiCrmServiceTaxFreesByIdAffiliatedIndividualsResponse, GetApiCrmServiceTaxOfficesData, GetApiCrmServiceTaxOfficesResponse, GetApiCrmServiceTaxOfficesByIdData, GetApiCrmServiceTaxOfficesByIdResponse, GetApiCrmServiceTaxOfficesByIdDetailData, GetApiCrmServiceTaxOfficesByIdDetailResponse, GetApiCrmServiceTaxOfficesByIdSubTaxOfficesData, GetApiCrmServiceTaxOfficesByIdSubTaxOfficesResponse, PostApiCrmServiceTaxOfficesWithComponentsData, PostApiCrmServiceTaxOfficesWithComponentsResponse, DeleteApiCrmServiceTaxOfficesByIdWithComponentsData, DeleteApiCrmServiceTaxOfficesByIdWithComponentsResponse, PostApiCrmServiceTaxOfficesByIdAffiliationsData, PostApiCrmServiceTaxOfficesByIdAffiliationsResponse, GetApiCrmServiceTaxOfficesByIdAffiliationsData, GetApiCrmServiceTaxOfficesByIdAffiliationsResponse, DeleteApiCrmServiceTaxOfficesByIdAffiliationsByAffiliationIdData, DeleteApiCrmServiceTaxOfficesByIdAffiliationsByAffiliationIdResponse, PutApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationIdData, PutApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationIdResponse, PutApiCrmServiceTaxOfficesByIdTelephonesByTelephoneIdData, PutApiCrmServiceTaxOfficesByIdTelephonesByTelephoneIdResponse, PutApiCrmServiceTaxOfficesByIdAddressesByAddressIdData, PutApiCrmServiceTaxOfficesByIdAddressesByAddressIdResponse, PutApiCrmServiceTaxOfficesByIdEmailsByEmailIdData, PutApiCrmServiceTaxOfficesByIdEmailsByEmailIdResponse, GetApiCrmServiceTaxOfficesByIdAffiliatedIndividualsData, GetApiCrmServiceTaxOfficesByIdAffiliatedIndividualsResponse, GetIntegrationApiTaxOfficesByIdData, GetIntegrationApiTaxOfficesByIdResponse, GetIntegrationApiTaxOfficesByIdAnyData, GetIntegrationApiTaxOfficesByIdAnyResponse } from './types.gen';
7
+
8
+ /**
9
+ * @param data The data for the request.
10
+ * @param data.includeTypes
11
+ * @returns unknown Success
12
+ * @throws ApiError
13
+ */
14
+ export const getApiAbpApiDefinition = (data: GetApiAbpApiDefinitionData = {}): CancelablePromise<GetApiAbpApiDefinitionResponse> => {
15
+ return __request(OpenAPI, {
16
+ method: 'GET',
17
+ url: '/api/abp/api-definition',
18
+ query: {
19
+ IncludeTypes: data.includeTypes
20
+ },
21
+ errors: {
22
+ 400: 'Bad Request',
23
+ 401: 'Unauthorized',
24
+ 403: 'Forbidden',
25
+ 404: 'Not Found',
26
+ 500: 'Server Error',
27
+ 501: 'Server Error'
28
+ }
29
+ });
30
+ };
31
+
32
+ /**
33
+ * @param data The data for the request.
34
+ * @param data.includeLocalizationResources
35
+ * @returns unknown Success
36
+ * @throws ApiError
37
+ */
38
+ export const getApiAbpApplicationConfiguration = (data: GetApiAbpApplicationConfigurationData = {}): CancelablePromise<GetApiAbpApplicationConfigurationResponse> => {
39
+ return __request(OpenAPI, {
40
+ method: 'GET',
41
+ url: '/api/abp/application-configuration',
42
+ query: {
43
+ IncludeLocalizationResources: data.includeLocalizationResources
44
+ },
45
+ errors: {
46
+ 400: 'Bad Request',
47
+ 401: 'Unauthorized',
48
+ 403: 'Forbidden',
49
+ 404: 'Not Found',
50
+ 500: 'Server Error',
51
+ 501: 'Server Error'
52
+ }
53
+ });
54
+ };
55
+
56
+ /**
57
+ * @param data The data for the request.
58
+ * @param data.cultureName
59
+ * @param data.onlyDynamics
60
+ * @returns unknown Success
61
+ * @throws ApiError
62
+ */
63
+ export const getApiAbpApplicationLocalization = (data: GetApiAbpApplicationLocalizationData): CancelablePromise<GetApiAbpApplicationLocalizationResponse> => {
64
+ return __request(OpenAPI, {
65
+ method: 'GET',
66
+ url: '/api/abp/application-localization',
67
+ query: {
68
+ CultureName: data.cultureName,
69
+ OnlyDynamics: data.onlyDynamics
70
+ },
71
+ errors: {
72
+ 400: 'Bad Request',
73
+ 401: 'Unauthorized',
74
+ 403: 'Forbidden',
75
+ 404: 'Not Found',
76
+ 500: 'Server Error',
77
+ 501: 'Server Error'
78
+ }
79
+ });
80
+ };
81
+
82
+ /**
83
+ * @param data The data for the request.
84
+ * @param data.entityPartyTypeCode
85
+ * @param data.sorting
86
+ * @param data.skipCount
87
+ * @param data.maxResultCount
88
+ * @returns unknown Success
89
+ * @throws ApiError
90
+ */
91
+ export const getApiCrmServiceAffiliationCodes = (data: GetApiCrmServiceAffiliationCodesData = {}): CancelablePromise<GetApiCrmServiceAffiliationCodesResponse> => {
92
+ return __request(OpenAPI, {
93
+ method: 'GET',
94
+ url: '/api/crm-service/affiliation-codes',
95
+ query: {
96
+ EntityPartyTypeCode: data.entityPartyTypeCode,
97
+ Sorting: data.sorting,
98
+ SkipCount: data.skipCount,
99
+ MaxResultCount: data.maxResultCount
100
+ },
101
+ errors: {
102
+ 400: 'Bad Request',
103
+ 401: 'Unauthorized',
104
+ 403: 'Forbidden',
105
+ 404: 'Not Found',
106
+ 500: 'Server Error',
107
+ 501: 'Server Error'
108
+ }
109
+ });
110
+ };
111
+
112
+ /**
113
+ * @param data The data for the request.
114
+ * @param data.requestBody
115
+ * @returns unknown Success
116
+ * @throws ApiError
117
+ */
118
+ export const postApiCrmServiceAffiliationCodes = (data: PostApiCrmServiceAffiliationCodesData = {}): CancelablePromise<PostApiCrmServiceAffiliationCodesResponse> => {
119
+ return __request(OpenAPI, {
120
+ method: 'POST',
121
+ url: '/api/crm-service/affiliation-codes',
122
+ body: data.requestBody,
123
+ mediaType: 'application/json',
124
+ errors: {
125
+ 400: 'Bad Request',
126
+ 401: 'Unauthorized',
127
+ 403: 'Forbidden',
128
+ 404: 'Not Found',
129
+ 500: 'Server Error',
130
+ 501: 'Server Error'
131
+ }
132
+ });
133
+ };
134
+
135
+ /**
136
+ * @param data The data for the request.
137
+ * @param data.id
138
+ * @returns unknown Success
139
+ * @throws ApiError
140
+ */
141
+ export const getApiCrmServiceAffiliationCodesById = (data: GetApiCrmServiceAffiliationCodesByIdData): CancelablePromise<GetApiCrmServiceAffiliationCodesByIdResponse> => {
142
+ return __request(OpenAPI, {
143
+ method: 'GET',
144
+ url: '/api/crm-service/affiliation-codes/{id}',
145
+ path: {
146
+ id: data.id
147
+ },
148
+ errors: {
149
+ 400: 'Bad Request',
150
+ 401: 'Unauthorized',
151
+ 403: 'Forbidden',
152
+ 404: 'Not Found',
153
+ 500: 'Server Error',
154
+ 501: 'Server Error'
155
+ }
156
+ });
157
+ };
158
+
159
+ /**
160
+ * @param data The data for the request.
161
+ * @param data.id
162
+ * @param data.requestBody
163
+ * @returns unknown Success
164
+ * @throws ApiError
165
+ */
166
+ export const putApiCrmServiceAffiliationCodesById = (data: PutApiCrmServiceAffiliationCodesByIdData): CancelablePromise<PutApiCrmServiceAffiliationCodesByIdResponse> => {
167
+ return __request(OpenAPI, {
168
+ method: 'PUT',
169
+ url: '/api/crm-service/affiliation-codes/{id}',
170
+ path: {
171
+ id: data.id
172
+ },
173
+ body: data.requestBody,
174
+ mediaType: 'application/json',
175
+ errors: {
176
+ 400: 'Bad Request',
177
+ 401: 'Unauthorized',
178
+ 403: 'Forbidden',
179
+ 404: 'Not Found',
180
+ 500: 'Server Error',
181
+ 501: 'Server Error'
182
+ }
183
+ });
184
+ };
185
+
186
+ /**
187
+ * @param data The data for the request.
188
+ * @param data.id
189
+ * @returns unknown Success
190
+ * @throws ApiError
191
+ */
192
+ export const deleteApiCrmServiceAffiliationCodesById = (data: DeleteApiCrmServiceAffiliationCodesByIdData): CancelablePromise<DeleteApiCrmServiceAffiliationCodesByIdResponse> => {
193
+ return __request(OpenAPI, {
194
+ method: 'DELETE',
195
+ url: '/api/crm-service/affiliation-codes/{id}',
196
+ path: {
197
+ id: data.id
198
+ },
199
+ errors: {
200
+ 400: 'Bad Request',
201
+ 401: 'Unauthorized',
202
+ 403: 'Forbidden',
203
+ 404: 'Not Found',
204
+ 500: 'Server Error',
205
+ 501: 'Server Error'
206
+ }
207
+ });
208
+ };
209
+
210
+ /**
211
+ * @param data The data for the request.
212
+ * @param data.id
213
+ * @param data.requestBody
214
+ * @returns unknown Success
215
+ * @throws ApiError
216
+ */
217
+ export const postApiCrmServiceAffiliationCodesByIdTranslation = (data: PostApiCrmServiceAffiliationCodesByIdTranslationData): CancelablePromise<PostApiCrmServiceAffiliationCodesByIdTranslationResponse> => {
218
+ return __request(OpenAPI, {
219
+ method: 'POST',
220
+ url: '/api/crm-service/affiliation-codes/{id}/translation',
221
+ path: {
222
+ id: data.id
223
+ },
224
+ body: data.requestBody,
225
+ mediaType: 'application/json',
226
+ errors: {
227
+ 400: 'Bad Request',
228
+ 401: 'Unauthorized',
229
+ 403: 'Forbidden',
230
+ 404: 'Not Found',
231
+ 500: 'Server Error',
232
+ 501: 'Server Error'
233
+ }
234
+ });
235
+ };
236
+
237
+ /**
238
+ * @param data The data for the request.
239
+ * @param data.id
240
+ * @param data.requestBody
241
+ * @returns unknown Success
242
+ * @throws ApiError
243
+ */
244
+ export const putApiCrmServiceAffiliationCodesByIdTranslation = (data: PutApiCrmServiceAffiliationCodesByIdTranslationData): CancelablePromise<PutApiCrmServiceAffiliationCodesByIdTranslationResponse> => {
245
+ return __request(OpenAPI, {
246
+ method: 'PUT',
247
+ url: '/api/crm-service/affiliation-codes/{id}/translation',
248
+ path: {
249
+ id: data.id
250
+ },
251
+ body: data.requestBody,
252
+ mediaType: 'application/json',
253
+ errors: {
254
+ 400: 'Bad Request',
255
+ 401: 'Unauthorized',
256
+ 403: 'Forbidden',
257
+ 404: 'Not Found',
258
+ 500: 'Server Error',
259
+ 501: 'Server Error'
260
+ }
261
+ });
262
+ };
263
+
264
+ /**
265
+ * @param data The data for the request.
266
+ * @param data.id
267
+ * @returns unknown Success
268
+ * @throws ApiError
269
+ */
270
+ export const getApiCrmServiceAffiliationCodesByIdExistByIdAsync = (data: GetApiCrmServiceAffiliationCodesByIdExistByIdAsyncData): CancelablePromise<GetApiCrmServiceAffiliationCodesByIdExistByIdAsyncResponse> => {
271
+ return __request(OpenAPI, {
272
+ method: 'GET',
273
+ url: '/api/crm-service/affiliation-codes/{id}/exist-by-id-async',
274
+ path: {
275
+ id: data.id
276
+ },
277
+ errors: {
278
+ 400: 'Bad Request',
279
+ 401: 'Unauthorized',
280
+ 403: 'Forbidden',
281
+ 404: 'Not Found',
282
+ 500: 'Server Error',
283
+ 501: 'Server Error'
284
+ }
285
+ });
286
+ };
287
+
288
+ /**
289
+ * @param data The data for the request.
290
+ * @param data.name
291
+ * @param data.sorting
292
+ * @param data.skipCount
293
+ * @param data.maxResultCount
294
+ * @returns unknown Success
295
+ * @throws ApiError
296
+ */
297
+ export const getApiCrmServiceCustoms = (data: GetApiCrmServiceCustomsData = {}): CancelablePromise<GetApiCrmServiceCustomsResponse> => {
298
+ return __request(OpenAPI, {
299
+ method: 'GET',
300
+ url: '/api/crm-service/customs',
301
+ query: {
302
+ Name: data.name,
303
+ Sorting: data.sorting,
304
+ SkipCount: data.skipCount,
305
+ MaxResultCount: data.maxResultCount
306
+ },
307
+ errors: {
308
+ 400: 'Bad Request',
309
+ 401: 'Unauthorized',
310
+ 403: 'Forbidden',
311
+ 404: 'Not Found',
312
+ 500: 'Server Error',
313
+ 501: 'Server Error'
314
+ }
315
+ });
316
+ };
317
+
318
+ /**
319
+ * @param data The data for the request.
320
+ * @param data.id
321
+ * @returns unknown Success
322
+ * @throws ApiError
323
+ */
324
+ export const getApiCrmServiceCustomsByIdDetail = (data: GetApiCrmServiceCustomsByIdDetailData): CancelablePromise<GetApiCrmServiceCustomsByIdDetailResponse> => {
325
+ return __request(OpenAPI, {
326
+ method: 'GET',
327
+ url: '/api/crm-service/customs/{id}/detail',
328
+ path: {
329
+ id: data.id
330
+ },
331
+ errors: {
332
+ 400: 'Bad Request',
333
+ 401: 'Unauthorized',
334
+ 403: 'Forbidden',
335
+ 404: 'Not Found',
336
+ 500: 'Server Error',
337
+ 501: 'Server Error'
338
+ }
339
+ });
340
+ };
341
+
342
+ /**
343
+ * @param data The data for the request.
344
+ * @param data.id
345
+ * @returns unknown Success
346
+ * @throws ApiError
347
+ */
348
+ export const getApiCrmServiceCustomsByIdSubCustoms = (data: GetApiCrmServiceCustomsByIdSubCustomsData): CancelablePromise<GetApiCrmServiceCustomsByIdSubCustomsResponse> => {
349
+ return __request(OpenAPI, {
350
+ method: 'GET',
351
+ url: '/api/crm-service/customs/{id}/sub-customs',
352
+ path: {
353
+ id: data.id
354
+ },
355
+ errors: {
356
+ 400: 'Bad Request',
357
+ 401: 'Unauthorized',
358
+ 403: 'Forbidden',
359
+ 404: 'Not Found',
360
+ 500: 'Server Error',
361
+ 501: 'Server Error'
362
+ }
363
+ });
364
+ };
365
+
366
+ /**
367
+ * @param data The data for the request.
368
+ * @param data.requestBody
369
+ * @returns unknown Success
370
+ * @throws ApiError
371
+ */
372
+ export const postApiCrmServiceCustomsWithComponents = (data: PostApiCrmServiceCustomsWithComponentsData = {}): CancelablePromise<PostApiCrmServiceCustomsWithComponentsResponse> => {
373
+ return __request(OpenAPI, {
374
+ method: 'POST',
375
+ url: '/api/crm-service/customs/with-components',
376
+ body: data.requestBody,
377
+ mediaType: 'application/json',
378
+ errors: {
379
+ 400: 'Bad Request',
380
+ 401: 'Unauthorized',
381
+ 403: 'Forbidden',
382
+ 404: 'Not Found',
383
+ 500: 'Server Error',
384
+ 501: 'Server Error'
385
+ }
386
+ });
387
+ };
388
+
389
+ /**
390
+ * @param data The data for the request.
391
+ * @param data.id
392
+ * @returns unknown Success
393
+ * @throws ApiError
394
+ */
395
+ export const deleteApiCrmServiceCustomsByIdWithComponents = (data: DeleteApiCrmServiceCustomsByIdWithComponentsData): CancelablePromise<DeleteApiCrmServiceCustomsByIdWithComponentsResponse> => {
396
+ return __request(OpenAPI, {
397
+ method: 'DELETE',
398
+ url: '/api/crm-service/customs/{id}/with-components',
399
+ path: {
400
+ id: data.id
401
+ },
402
+ errors: {
403
+ 400: 'Bad Request',
404
+ 401: 'Unauthorized',
405
+ 403: 'Forbidden',
406
+ 404: 'Not Found',
407
+ 500: 'Server Error',
408
+ 501: 'Server Error'
409
+ }
410
+ });
411
+ };
412
+
413
+ /**
414
+ * @param data The data for the request.
415
+ * @param data.id
416
+ * @param data.requestBody
417
+ * @returns unknown Success
418
+ * @throws ApiError
419
+ */
420
+ export const postApiCrmServiceCustomsByIdAffiliations = (data: PostApiCrmServiceCustomsByIdAffiliationsData): CancelablePromise<PostApiCrmServiceCustomsByIdAffiliationsResponse> => {
421
+ return __request(OpenAPI, {
422
+ method: 'POST',
423
+ url: '/api/crm-service/customs/{id}/affiliations',
424
+ path: {
425
+ id: data.id
426
+ },
427
+ body: data.requestBody,
428
+ mediaType: 'application/json',
429
+ errors: {
430
+ 400: 'Bad Request',
431
+ 401: 'Unauthorized',
432
+ 403: 'Forbidden',
433
+ 404: 'Not Found',
434
+ 500: 'Server Error',
435
+ 501: 'Server Error'
436
+ }
437
+ });
438
+ };
439
+
440
+ /**
441
+ * @param data The data for the request.
442
+ * @param data.id
443
+ * @param data.affiliationCodeId
444
+ * @param data.entityInformationTypeCode
445
+ * @param data.name
446
+ * @param data.email
447
+ * @param data.telephone
448
+ * @param data.sorting
449
+ * @param data.skipCount
450
+ * @param data.maxResultCount
451
+ * @returns unknown Success
452
+ * @throws ApiError
453
+ */
454
+ export const getApiCrmServiceCustomsByIdAffiliations = (data: GetApiCrmServiceCustomsByIdAffiliationsData): CancelablePromise<GetApiCrmServiceCustomsByIdAffiliationsResponse> => {
455
+ return __request(OpenAPI, {
456
+ method: 'GET',
457
+ url: '/api/crm-service/customs/{id}/affiliations',
458
+ path: {
459
+ id: data.id
460
+ },
461
+ query: {
462
+ AffiliationCodeId: data.affiliationCodeId,
463
+ EntityInformationTypeCode: data.entityInformationTypeCode,
464
+ Name: data.name,
465
+ Email: data.email,
466
+ Telephone: data.telephone,
467
+ Sorting: data.sorting,
468
+ SkipCount: data.skipCount,
469
+ MaxResultCount: data.maxResultCount
470
+ },
471
+ errors: {
472
+ 400: 'Bad Request',
473
+ 401: 'Unauthorized',
474
+ 403: 'Forbidden',
475
+ 404: 'Not Found',
476
+ 500: 'Server Error',
477
+ 501: 'Server Error'
478
+ }
479
+ });
480
+ };
481
+
482
+ /**
483
+ * @param data The data for the request.
484
+ * @param data.id
485
+ * @param data.affiliationId
486
+ * @returns unknown Success
487
+ * @throws ApiError
488
+ */
489
+ export const deleteApiCrmServiceCustomsByIdAffiliationsByAffiliationId = (data: DeleteApiCrmServiceCustomsByIdAffiliationsByAffiliationIdData): CancelablePromise<DeleteApiCrmServiceCustomsByIdAffiliationsByAffiliationIdResponse> => {
490
+ return __request(OpenAPI, {
491
+ method: 'DELETE',
492
+ url: '/api/crm-service/customs/{id}/affiliations/{affiliationId}',
493
+ path: {
494
+ id: data.id,
495
+ affiliationId: data.affiliationId
496
+ },
497
+ errors: {
498
+ 400: 'Bad Request',
499
+ 401: 'Unauthorized',
500
+ 403: 'Forbidden',
501
+ 404: 'Not Found',
502
+ 500: 'Server Error',
503
+ 501: 'Server Error'
504
+ }
505
+ });
506
+ };
507
+
508
+ /**
509
+ * @param data The data for the request.
510
+ * @param data.id
511
+ * @param data.organizationId
512
+ * @param data.requestBody
513
+ * @returns unknown Success
514
+ * @throws ApiError
515
+ */
516
+ export const putApiCrmServiceCustomsByIdOrganizationsByOrganizationId = (data: PutApiCrmServiceCustomsByIdOrganizationsByOrganizationIdData): CancelablePromise<PutApiCrmServiceCustomsByIdOrganizationsByOrganizationIdResponse> => {
517
+ return __request(OpenAPI, {
518
+ method: 'PUT',
519
+ url: '/api/crm-service/customs/{id}/organizations/{organizationId}',
520
+ path: {
521
+ id: data.id,
522
+ organizationId: data.organizationId
523
+ },
524
+ body: data.requestBody,
525
+ mediaType: 'application/json',
526
+ errors: {
527
+ 400: 'Bad Request',
528
+ 401: 'Unauthorized',
529
+ 403: 'Forbidden',
530
+ 404: 'Not Found',
531
+ 500: 'Server Error',
532
+ 501: 'Server Error'
533
+ }
534
+ });
535
+ };
536
+
537
+ /**
538
+ * @param data The data for the request.
539
+ * @param data.id
540
+ * @param data.telephoneId
541
+ * @param data.requestBody
542
+ * @returns unknown Success
543
+ * @throws ApiError
544
+ */
545
+ export const putApiCrmServiceCustomsByIdTelephonesByTelephoneId = (data: PutApiCrmServiceCustomsByIdTelephonesByTelephoneIdData): CancelablePromise<PutApiCrmServiceCustomsByIdTelephonesByTelephoneIdResponse> => {
546
+ return __request(OpenAPI, {
547
+ method: 'PUT',
548
+ url: '/api/crm-service/customs/{id}/telephones/{telephoneId}',
549
+ path: {
550
+ id: data.id,
551
+ telephoneId: data.telephoneId
552
+ },
553
+ body: data.requestBody,
554
+ mediaType: 'application/json',
555
+ errors: {
556
+ 400: 'Bad Request',
557
+ 401: 'Unauthorized',
558
+ 403: 'Forbidden',
559
+ 404: 'Not Found',
560
+ 500: 'Server Error',
561
+ 501: 'Server Error'
562
+ }
563
+ });
564
+ };
565
+
566
+ /**
567
+ * @param data The data for the request.
568
+ * @param data.id
569
+ * @param data.addressId
570
+ * @param data.requestBody
571
+ * @returns unknown Success
572
+ * @throws ApiError
573
+ */
574
+ export const putApiCrmServiceCustomsByIdAddressesByAddressId = (data: PutApiCrmServiceCustomsByIdAddressesByAddressIdData): CancelablePromise<PutApiCrmServiceCustomsByIdAddressesByAddressIdResponse> => {
575
+ return __request(OpenAPI, {
576
+ method: 'PUT',
577
+ url: '/api/crm-service/customs/{id}/addresses/{addressId}',
578
+ path: {
579
+ id: data.id,
580
+ addressId: data.addressId
581
+ },
582
+ body: data.requestBody,
583
+ mediaType: 'application/json',
584
+ errors: {
585
+ 400: 'Bad Request',
586
+ 401: 'Unauthorized',
587
+ 403: 'Forbidden',
588
+ 404: 'Not Found',
589
+ 500: 'Server Error',
590
+ 501: 'Server Error'
591
+ }
592
+ });
593
+ };
594
+
595
+ /**
596
+ * @param data The data for the request.
597
+ * @param data.id
598
+ * @param data.emailId
599
+ * @param data.addressId
600
+ * @param data.requestBody
601
+ * @returns unknown Success
602
+ * @throws ApiError
603
+ */
604
+ export const putApiCrmServiceCustomsByIdEmailsByEmailId = (data: PutApiCrmServiceCustomsByIdEmailsByEmailIdData): CancelablePromise<PutApiCrmServiceCustomsByIdEmailsByEmailIdResponse> => {
605
+ return __request(OpenAPI, {
606
+ method: 'PUT',
607
+ url: '/api/crm-service/customs/{id}/emails/{emailId}',
608
+ path: {
609
+ id: data.id,
610
+ emailId: data.emailId
611
+ },
612
+ query: {
613
+ addressId: data.addressId
614
+ },
615
+ body: data.requestBody,
616
+ mediaType: 'application/json',
617
+ errors: {
618
+ 400: 'Bad Request',
619
+ 401: 'Unauthorized',
620
+ 403: 'Forbidden',
621
+ 404: 'Not Found',
622
+ 500: 'Server Error',
623
+ 501: 'Server Error'
624
+ }
625
+ });
626
+ };
627
+
628
+ /**
629
+ * @param data The data for the request.
630
+ * @param data.id
631
+ * @returns unknown Success
632
+ * @throws ApiError
633
+ */
634
+ export const getApiCrmServiceCustomsByIdAffilatedIndividuals = (data: GetApiCrmServiceCustomsByIdAffilatedIndividualsData): CancelablePromise<GetApiCrmServiceCustomsByIdAffilatedIndividualsResponse> => {
635
+ return __request(OpenAPI, {
636
+ method: 'GET',
637
+ url: '/api/crm-service/customs/{id}/affilated-individuals',
638
+ path: {
639
+ id: data.id
640
+ },
641
+ errors: {
642
+ 400: 'Bad Request',
643
+ 401: 'Unauthorized',
644
+ 403: 'Forbidden',
645
+ 404: 'Not Found',
646
+ 500: 'Server Error',
647
+ 501: 'Server Error'
648
+ }
649
+ });
650
+ };
651
+
652
+ /**
653
+ * @param data The data for the request.
654
+ * @param data.id
655
+ * @returns unknown Success
656
+ * @throws ApiError
657
+ */
658
+ export const getIntegrationApiCustomsByIdExist = (data: GetIntegrationApiCustomsByIdExistData): CancelablePromise<GetIntegrationApiCustomsByIdExistResponse> => {
659
+ return __request(OpenAPI, {
660
+ method: 'GET',
661
+ url: '/integration-api/customs/{id}/exist',
662
+ path: {
663
+ id: data.id
664
+ },
665
+ errors: {
666
+ 400: 'Bad Request',
667
+ 401: 'Unauthorized',
668
+ 403: 'Forbidden',
669
+ 404: 'Not Found',
670
+ 500: 'Server Error',
671
+ 501: 'Server Error'
672
+ }
673
+ });
674
+ };
675
+
676
+ /**
677
+ * @param data The data for the request.
678
+ * @param data.ids
679
+ * @returns string Success
680
+ * @throws ApiError
681
+ */
682
+ export const getIntegrationApiCustomsNames = (data: GetIntegrationApiCustomsNamesData = {}): CancelablePromise<GetIntegrationApiCustomsNamesResponse> => {
683
+ return __request(OpenAPI, {
684
+ method: 'GET',
685
+ url: '/integration-api/customs/names',
686
+ query: {
687
+ ids: data.ids
688
+ },
689
+ errors: {
690
+ 400: 'Bad Request',
691
+ 401: 'Unauthorized',
692
+ 403: 'Forbidden',
693
+ 404: 'Not Found',
694
+ 500: 'Server Error',
695
+ 501: 'Server Error'
696
+ }
697
+ });
698
+ };
699
+
700
+ /**
701
+ * @param data The data for the request.
702
+ * @param data.requestBody
703
+ * @returns unknown Success
704
+ * @throws ApiError
705
+ */
706
+ export const postApiCrmServiceIndividualsWithComponents = (data: PostApiCrmServiceIndividualsWithComponentsData = {}): CancelablePromise<PostApiCrmServiceIndividualsWithComponentsResponse> => {
707
+ return __request(OpenAPI, {
708
+ method: 'POST',
709
+ url: '/api/crm-service/individuals/with-components',
710
+ body: data.requestBody,
711
+ mediaType: 'application/json',
712
+ errors: {
713
+ 400: 'Bad Request',
714
+ 401: 'Unauthorized',
715
+ 403: 'Forbidden',
716
+ 404: 'Not Found',
717
+ 500: 'Server Error',
718
+ 501: 'Server Error'
719
+ }
720
+ });
721
+ };
722
+
723
+ /**
724
+ * @param data The data for the request.
725
+ * @param data.id
726
+ * @returns unknown Success
727
+ * @throws ApiError
728
+ */
729
+ export const postApiCrmServiceIndividualsByIdAbpUserAccount = (data: PostApiCrmServiceIndividualsByIdAbpUserAccountData): CancelablePromise<PostApiCrmServiceIndividualsByIdAbpUserAccountResponse> => {
730
+ return __request(OpenAPI, {
731
+ method: 'POST',
732
+ url: '/api/crm-service/individuals/{id}/abp-user-account',
733
+ path: {
734
+ id: data.id
735
+ },
736
+ errors: {
737
+ 400: 'Bad Request',
738
+ 401: 'Unauthorized',
739
+ 403: 'Forbidden',
740
+ 404: 'Not Found',
741
+ 500: 'Server Error',
742
+ 501: 'Server Error'
743
+ }
744
+ });
745
+ };
746
+
747
+ /**
748
+ * @param data The data for the request.
749
+ * @param data.id
750
+ * @returns unknown Success
751
+ * @throws ApiError
752
+ */
753
+ export const deleteApiCrmServiceIndividualsById = (data: DeleteApiCrmServiceIndividualsByIdData): CancelablePromise<DeleteApiCrmServiceIndividualsByIdResponse> => {
754
+ return __request(OpenAPI, {
755
+ method: 'DELETE',
756
+ url: '/api/crm-service/individuals/{id}',
757
+ path: {
758
+ id: data.id
759
+ },
760
+ errors: {
761
+ 400: 'Bad Request',
762
+ 401: 'Unauthorized',
763
+ 403: 'Forbidden',
764
+ 404: 'Not Found',
765
+ 500: 'Server Error',
766
+ 501: 'Server Error'
767
+ }
768
+ });
769
+ };
770
+
771
+ /**
772
+ * @param data The data for the request.
773
+ * @param data.id
774
+ * @returns unknown Success
775
+ * @throws ApiError
776
+ */
777
+ export const getApiCrmServiceIndividualsById = (data: GetApiCrmServiceIndividualsByIdData): CancelablePromise<GetApiCrmServiceIndividualsByIdResponse> => {
778
+ return __request(OpenAPI, {
779
+ method: 'GET',
780
+ url: '/api/crm-service/individuals/{id}',
781
+ path: {
782
+ id: data.id
783
+ },
784
+ errors: {
785
+ 400: 'Bad Request',
786
+ 401: 'Unauthorized',
787
+ 403: 'Forbidden',
788
+ 404: 'Not Found',
789
+ 500: 'Server Error',
790
+ 501: 'Server Error'
791
+ }
792
+ });
793
+ };
794
+
795
+ /**
796
+ * @param data The data for the request.
797
+ * @param data.entityPartyTypeCodes
798
+ * @param data.parentId
799
+ * @param data.email
800
+ * @param data.telephone
801
+ * @param data.name
802
+ * @param data.sorting
803
+ * @param data.skipCount
804
+ * @param data.maxResultCount
805
+ * @returns unknown Success
806
+ * @throws ApiError
807
+ */
808
+ export const getApiCrmServiceIndividuals = (data: GetApiCrmServiceIndividualsData = {}): CancelablePromise<GetApiCrmServiceIndividualsResponse> => {
809
+ return __request(OpenAPI, {
810
+ method: 'GET',
811
+ url: '/api/crm-service/individuals',
812
+ query: {
813
+ EntityPartyTypeCodes: data.entityPartyTypeCodes,
814
+ ParentId: data.parentId,
815
+ Email: data.email,
816
+ Telephone: data.telephone,
817
+ Name: data.name,
818
+ Sorting: data.sorting,
819
+ SkipCount: data.skipCount,
820
+ MaxResultCount: data.maxResultCount
821
+ },
822
+ errors: {
823
+ 400: 'Bad Request',
824
+ 401: 'Unauthorized',
825
+ 403: 'Forbidden',
826
+ 404: 'Not Found',
827
+ 500: 'Server Error',
828
+ 501: 'Server Error'
829
+ }
830
+ });
831
+ };
832
+
833
+ /**
834
+ * @param data The data for the request.
835
+ * @param data.id
836
+ * @param data.showMerchant
837
+ * @param data.showCustoms
838
+ * @param data.showRefundPoint
839
+ * @param data.showTaxOffice
840
+ * @param data.showTaxFree
841
+ * @returns unknown Success
842
+ * @throws ApiError
843
+ */
844
+ export const getApiCrmServiceIndividualsByIdAffiliations = (data: GetApiCrmServiceIndividualsByIdAffiliationsData): CancelablePromise<GetApiCrmServiceIndividualsByIdAffiliationsResponse> => {
845
+ return __request(OpenAPI, {
846
+ method: 'GET',
847
+ url: '/api/crm-service/individuals/{id}/affiliations',
848
+ path: {
849
+ id: data.id
850
+ },
851
+ query: {
852
+ ShowMerchant: data.showMerchant,
853
+ ShowCustoms: data.showCustoms,
854
+ ShowRefundPoint: data.showRefundPoint,
855
+ ShowTaxOffice: data.showTaxOffice,
856
+ ShowTaxFree: data.showTaxFree
857
+ },
858
+ errors: {
859
+ 400: 'Bad Request',
860
+ 401: 'Unauthorized',
861
+ 403: 'Forbidden',
862
+ 404: 'Not Found',
863
+ 500: 'Server Error',
864
+ 501: 'Server Error'
865
+ }
866
+ });
867
+ };
868
+
869
+ /**
870
+ * @param data The data for the request.
871
+ * @param data.ids
872
+ * @param data.typeCodes
873
+ * @param data.name
874
+ * @param data.productGroupIds
875
+ * @param data.sorting
876
+ * @param data.skipCount
877
+ * @param data.maxResultCount
878
+ * @returns unknown Success
879
+ * @throws ApiError
880
+ */
881
+ export const getApiCrmServiceMerchants = (data: GetApiCrmServiceMerchantsData = {}): CancelablePromise<GetApiCrmServiceMerchantsResponse> => {
882
+ return __request(OpenAPI, {
883
+ method: 'GET',
884
+ url: '/api/crm-service/merchants',
885
+ query: {
886
+ Ids: data.ids,
887
+ TypeCodes: data.typeCodes,
888
+ Name: data.name,
889
+ ProductGroupIds: data.productGroupIds,
890
+ Sorting: data.sorting,
891
+ SkipCount: data.skipCount,
892
+ MaxResultCount: data.maxResultCount
893
+ },
894
+ errors: {
895
+ 400: 'Bad Request',
896
+ 401: 'Unauthorized',
897
+ 403: 'Forbidden',
898
+ 404: 'Not Found',
899
+ 500: 'Server Error',
900
+ 501: 'Server Error'
901
+ }
902
+ });
903
+ };
904
+
905
+ /**
906
+ * @param data The data for the request.
907
+ * @param data.id
908
+ * @returns unknown Success
909
+ * @throws ApiError
910
+ */
911
+ export const getApiCrmServiceMerchantsById = (data: GetApiCrmServiceMerchantsByIdData): CancelablePromise<GetApiCrmServiceMerchantsByIdResponse> => {
912
+ return __request(OpenAPI, {
913
+ method: 'GET',
914
+ url: '/api/crm-service/merchants/{id}',
915
+ path: {
916
+ id: data.id
917
+ },
918
+ errors: {
919
+ 400: 'Bad Request',
920
+ 401: 'Unauthorized',
921
+ 403: 'Forbidden',
922
+ 404: 'Not Found',
923
+ 500: 'Server Error',
924
+ 501: 'Server Error'
925
+ }
926
+ });
927
+ };
928
+
929
+ /**
930
+ * @param data The data for the request.
931
+ * @param data.id
932
+ * @param data.requestBody
933
+ * @returns unknown Success
934
+ * @throws ApiError
935
+ */
936
+ export const putApiCrmServiceMerchantsById = (data: PutApiCrmServiceMerchantsByIdData): CancelablePromise<PutApiCrmServiceMerchantsByIdResponse> => {
937
+ return __request(OpenAPI, {
938
+ method: 'PUT',
939
+ url: '/api/crm-service/merchants/{id}',
940
+ path: {
941
+ id: data.id
942
+ },
943
+ body: data.requestBody,
944
+ mediaType: 'application/json',
945
+ errors: {
946
+ 400: 'Bad Request',
947
+ 401: 'Unauthorized',
948
+ 403: 'Forbidden',
949
+ 404: 'Not Found',
950
+ 500: 'Server Error',
951
+ 501: 'Server Error'
952
+ }
953
+ });
954
+ };
955
+
956
+ /**
957
+ * @param data The data for the request.
958
+ * @param data.id
959
+ * @returns unknown Success
960
+ * @throws ApiError
961
+ */
962
+ export const getApiCrmServiceMerchantsByIdDetail = (data: GetApiCrmServiceMerchantsByIdDetailData): CancelablePromise<GetApiCrmServiceMerchantsByIdDetailResponse> => {
963
+ return __request(OpenAPI, {
964
+ method: 'GET',
965
+ url: '/api/crm-service/merchants/{id}/detail',
966
+ path: {
967
+ id: data.id
968
+ },
969
+ errors: {
970
+ 400: 'Bad Request',
971
+ 401: 'Unauthorized',
972
+ 403: 'Forbidden',
973
+ 404: 'Not Found',
974
+ 500: 'Server Error',
975
+ 501: 'Server Error'
976
+ }
977
+ });
978
+ };
979
+
980
+ /**
981
+ * @param data The data for the request.
982
+ * @param data.id
983
+ * @param data.sorting
984
+ * @param data.skipCount
985
+ * @param data.maxResultCount
986
+ * @returns unknown Success
987
+ * @throws ApiError
988
+ */
989
+ export const getApiCrmServiceMerchantsByIdSubMerchants = (data: GetApiCrmServiceMerchantsByIdSubMerchantsData): CancelablePromise<GetApiCrmServiceMerchantsByIdSubMerchantsResponse> => {
990
+ return __request(OpenAPI, {
991
+ method: 'GET',
992
+ url: '/api/crm-service/merchants/{id}/sub-merchants',
993
+ path: {
994
+ id: data.id
995
+ },
996
+ query: {
997
+ Sorting: data.sorting,
998
+ SkipCount: data.skipCount,
999
+ MaxResultCount: data.maxResultCount
1000
+ },
1001
+ errors: {
1002
+ 400: 'Bad Request',
1003
+ 401: 'Unauthorized',
1004
+ 403: 'Forbidden',
1005
+ 404: 'Not Found',
1006
+ 500: 'Server Error',
1007
+ 501: 'Server Error'
1008
+ }
1009
+ });
1010
+ };
1011
+
1012
+ /**
1013
+ * @param data The data for the request.
1014
+ * @param data.requestBody
1015
+ * @returns unknown Success
1016
+ * @throws ApiError
1017
+ */
1018
+ export const postApiCrmServiceMerchantsWithComponents = (data: PostApiCrmServiceMerchantsWithComponentsData = {}): CancelablePromise<PostApiCrmServiceMerchantsWithComponentsResponse> => {
1019
+ return __request(OpenAPI, {
1020
+ method: 'POST',
1021
+ url: '/api/crm-service/merchants/with-components',
1022
+ body: data.requestBody,
1023
+ mediaType: 'application/json',
1024
+ errors: {
1025
+ 400: 'Bad Request',
1026
+ 401: 'Unauthorized',
1027
+ 403: 'Forbidden',
1028
+ 404: 'Not Found',
1029
+ 500: 'Server Error',
1030
+ 501: 'Server Error'
1031
+ }
1032
+ });
1033
+ };
1034
+
1035
+ /**
1036
+ * @param data The data for the request.
1037
+ * @param data.id
1038
+ * @returns unknown Success
1039
+ * @throws ApiError
1040
+ */
1041
+ export const deleteApiCrmServiceMerchantsByIdWithComponents = (data: DeleteApiCrmServiceMerchantsByIdWithComponentsData): CancelablePromise<DeleteApiCrmServiceMerchantsByIdWithComponentsResponse> => {
1042
+ return __request(OpenAPI, {
1043
+ method: 'DELETE',
1044
+ url: '/api/crm-service/merchants/{id}/with-components',
1045
+ path: {
1046
+ id: data.id
1047
+ },
1048
+ errors: {
1049
+ 400: 'Bad Request',
1050
+ 401: 'Unauthorized',
1051
+ 403: 'Forbidden',
1052
+ 404: 'Not Found',
1053
+ 500: 'Server Error',
1054
+ 501: 'Server Error'
1055
+ }
1056
+ });
1057
+ };
1058
+
1059
+ /**
1060
+ * @param data The data for the request.
1061
+ * @param data.id
1062
+ * @param data.affiliationCodeId
1063
+ * @param data.entityInformationTypeCode
1064
+ * @param data.name
1065
+ * @param data.email
1066
+ * @param data.telephone
1067
+ * @param data.sorting
1068
+ * @param data.skipCount
1069
+ * @param data.maxResultCount
1070
+ * @returns unknown Success
1071
+ * @throws ApiError
1072
+ */
1073
+ export const getApiCrmServiceMerchantsByIdAffiliations = (data: GetApiCrmServiceMerchantsByIdAffiliationsData): CancelablePromise<GetApiCrmServiceMerchantsByIdAffiliationsResponse> => {
1074
+ return __request(OpenAPI, {
1075
+ method: 'GET',
1076
+ url: '/api/crm-service/merchants/{id}/affiliations',
1077
+ path: {
1078
+ id: data.id
1079
+ },
1080
+ query: {
1081
+ AffiliationCodeId: data.affiliationCodeId,
1082
+ EntityInformationTypeCode: data.entityInformationTypeCode,
1083
+ Name: data.name,
1084
+ Email: data.email,
1085
+ Telephone: data.telephone,
1086
+ Sorting: data.sorting,
1087
+ SkipCount: data.skipCount,
1088
+ MaxResultCount: data.maxResultCount
1089
+ },
1090
+ errors: {
1091
+ 400: 'Bad Request',
1092
+ 401: 'Unauthorized',
1093
+ 403: 'Forbidden',
1094
+ 404: 'Not Found',
1095
+ 500: 'Server Error',
1096
+ 501: 'Server Error'
1097
+ }
1098
+ });
1099
+ };
1100
+
1101
+ /**
1102
+ * @param data The data for the request.
1103
+ * @param data.id
1104
+ * @param data.requestBody
1105
+ * @returns unknown Success
1106
+ * @throws ApiError
1107
+ */
1108
+ export const postApiCrmServiceMerchantsByIdAffiliations = (data: PostApiCrmServiceMerchantsByIdAffiliationsData): CancelablePromise<PostApiCrmServiceMerchantsByIdAffiliationsResponse> => {
1109
+ return __request(OpenAPI, {
1110
+ method: 'POST',
1111
+ url: '/api/crm-service/merchants/{id}/affiliations',
1112
+ path: {
1113
+ id: data.id
1114
+ },
1115
+ body: data.requestBody,
1116
+ mediaType: 'application/json',
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
+ * @param data.affiliationId
1132
+ * @returns unknown Success
1133
+ * @throws ApiError
1134
+ */
1135
+ export const deleteApiCrmServiceMerchantsByIdAffiliationsByAffiliationId = (data: DeleteApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdData): CancelablePromise<DeleteApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdResponse> => {
1136
+ return __request(OpenAPI, {
1137
+ method: 'DELETE',
1138
+ url: '/api/crm-service/merchants/{id}/affiliations/{affiliationId}',
1139
+ path: {
1140
+ id: data.id,
1141
+ affiliationId: data.affiliationId
1142
+ },
1143
+ errors: {
1144
+ 400: 'Bad Request',
1145
+ 401: 'Unauthorized',
1146
+ 403: 'Forbidden',
1147
+ 404: 'Not Found',
1148
+ 500: 'Server Error',
1149
+ 501: 'Server Error'
1150
+ }
1151
+ });
1152
+ };
1153
+
1154
+ /**
1155
+ * @param data The data for the request.
1156
+ * @param data.id
1157
+ * @param data.affiliationId
1158
+ * @param data.requestBody
1159
+ * @returns unknown Success
1160
+ * @throws ApiError
1161
+ */
1162
+ export const putApiCrmServiceMerchantsByIdAffiliationsByAffiliationId = (data: PutApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdData): CancelablePromise<PutApiCrmServiceMerchantsByIdAffiliationsByAffiliationIdResponse> => {
1163
+ return __request(OpenAPI, {
1164
+ method: 'PUT',
1165
+ url: '/api/crm-service/merchants/{id}/affiliations/{affiliationId}',
1166
+ path: {
1167
+ id: data.id,
1168
+ affiliationId: data.affiliationId
1169
+ },
1170
+ body: data.requestBody,
1171
+ mediaType: 'application/json',
1172
+ errors: {
1173
+ 400: 'Bad Request',
1174
+ 401: 'Unauthorized',
1175
+ 403: 'Forbidden',
1176
+ 404: 'Not Found',
1177
+ 500: 'Server Error',
1178
+ 501: 'Server Error'
1179
+ }
1180
+ });
1181
+ };
1182
+
1183
+ /**
1184
+ * @param data The data for the request.
1185
+ * @param data.id
1186
+ * @param data.organizationId
1187
+ * @param data.requestBody
1188
+ * @returns unknown Success
1189
+ * @throws ApiError
1190
+ */
1191
+ export const putApiCrmServiceMerchantsByIdOrganizationsByOrganizationId = (data: PutApiCrmServiceMerchantsByIdOrganizationsByOrganizationIdData): CancelablePromise<PutApiCrmServiceMerchantsByIdOrganizationsByOrganizationIdResponse> => {
1192
+ return __request(OpenAPI, {
1193
+ method: 'PUT',
1194
+ url: '/api/crm-service/merchants/{id}/organizations/{organizationId}',
1195
+ path: {
1196
+ id: data.id,
1197
+ organizationId: data.organizationId
1198
+ },
1199
+ body: data.requestBody,
1200
+ mediaType: 'application/json',
1201
+ errors: {
1202
+ 400: 'Bad Request',
1203
+ 401: 'Unauthorized',
1204
+ 403: 'Forbidden',
1205
+ 404: 'Not Found',
1206
+ 500: 'Server Error',
1207
+ 501: 'Server Error'
1208
+ }
1209
+ });
1210
+ };
1211
+
1212
+ /**
1213
+ * @param data The data for the request.
1214
+ * @param data.requestBody
1215
+ * @returns unknown Success
1216
+ * @throws ApiError
1217
+ */
1218
+ export const postApiCrmServiceMerchantsBulkProductGroupMerchants = (data: PostApiCrmServiceMerchantsBulkProductGroupMerchantsData = {}): CancelablePromise<PostApiCrmServiceMerchantsBulkProductGroupMerchantsResponse> => {
1219
+ return __request(OpenAPI, {
1220
+ method: 'POST',
1221
+ url: '/api/crm-service/merchants/bulk-product-group-merchants',
1222
+ body: data.requestBody,
1223
+ mediaType: 'application/json',
1224
+ errors: {
1225
+ 400: 'Bad Request',
1226
+ 401: 'Unauthorized',
1227
+ 403: 'Forbidden',
1228
+ 404: 'Not Found',
1229
+ 500: 'Server Error',
1230
+ 501: 'Server Error'
1231
+ }
1232
+ });
1233
+ };
1234
+
1235
+ /**
1236
+ * @param data The data for the request.
1237
+ * @param data.id
1238
+ * @returns unknown Success
1239
+ * @throws ApiError
1240
+ */
1241
+ export const getApiCrmServiceMerchantsByIdTelephones = (data: GetApiCrmServiceMerchantsByIdTelephonesData): CancelablePromise<GetApiCrmServiceMerchantsByIdTelephonesResponse> => {
1242
+ return __request(OpenAPI, {
1243
+ method: 'GET',
1244
+ url: '/api/crm-service/merchants/{id}/telephones',
1245
+ path: {
1246
+ id: data.id
1247
+ },
1248
+ errors: {
1249
+ 400: 'Bad Request',
1250
+ 401: 'Unauthorized',
1251
+ 403: 'Forbidden',
1252
+ 404: 'Not Found',
1253
+ 500: 'Server Error',
1254
+ 501: 'Server Error'
1255
+ }
1256
+ });
1257
+ };
1258
+
1259
+ /**
1260
+ * @param data The data for the request.
1261
+ * @param data.id
1262
+ * @param data.telephoneId
1263
+ * @param data.requestBody
1264
+ * @returns unknown Success
1265
+ * @throws ApiError
1266
+ */
1267
+ export const putApiCrmServiceMerchantsByIdTelephonesByTelephoneId = (data: PutApiCrmServiceMerchantsByIdTelephonesByTelephoneIdData): CancelablePromise<PutApiCrmServiceMerchantsByIdTelephonesByTelephoneIdResponse> => {
1268
+ return __request(OpenAPI, {
1269
+ method: 'PUT',
1270
+ url: '/api/crm-service/merchants/{id}/telephones/{telephoneId}',
1271
+ path: {
1272
+ id: data.id,
1273
+ telephoneId: data.telephoneId
1274
+ },
1275
+ body: data.requestBody,
1276
+ mediaType: 'application/json',
1277
+ errors: {
1278
+ 400: 'Bad Request',
1279
+ 401: 'Unauthorized',
1280
+ 403: 'Forbidden',
1281
+ 404: 'Not Found',
1282
+ 500: 'Server Error',
1283
+ 501: 'Server Error'
1284
+ }
1285
+ });
1286
+ };
1287
+
1288
+ /**
1289
+ * @param data The data for the request.
1290
+ * @param data.id
1291
+ * @returns unknown Success
1292
+ * @throws ApiError
1293
+ */
1294
+ export const getApiCrmServiceMerchantsByIdAddresses = (data: GetApiCrmServiceMerchantsByIdAddressesData): CancelablePromise<GetApiCrmServiceMerchantsByIdAddressesResponse> => {
1295
+ return __request(OpenAPI, {
1296
+ method: 'GET',
1297
+ url: '/api/crm-service/merchants/{id}/addresses',
1298
+ path: {
1299
+ id: data.id
1300
+ },
1301
+ errors: {
1302
+ 400: 'Bad Request',
1303
+ 401: 'Unauthorized',
1304
+ 403: 'Forbidden',
1305
+ 404: 'Not Found',
1306
+ 500: 'Server Error',
1307
+ 501: 'Server Error'
1308
+ }
1309
+ });
1310
+ };
1311
+
1312
+ /**
1313
+ * @param data The data for the request.
1314
+ * @param data.id
1315
+ * @param data.addressId
1316
+ * @param data.requestBody
1317
+ * @returns unknown Success
1318
+ * @throws ApiError
1319
+ */
1320
+ export const putApiCrmServiceMerchantsByIdAddressesByAddressId = (data: PutApiCrmServiceMerchantsByIdAddressesByAddressIdData): CancelablePromise<PutApiCrmServiceMerchantsByIdAddressesByAddressIdResponse> => {
1321
+ return __request(OpenAPI, {
1322
+ method: 'PUT',
1323
+ url: '/api/crm-service/merchants/{id}/addresses/{addressId}',
1324
+ path: {
1325
+ id: data.id,
1326
+ addressId: data.addressId
1327
+ },
1328
+ body: data.requestBody,
1329
+ mediaType: 'application/json',
1330
+ errors: {
1331
+ 400: 'Bad Request',
1332
+ 401: 'Unauthorized',
1333
+ 403: 'Forbidden',
1334
+ 404: 'Not Found',
1335
+ 500: 'Server Error',
1336
+ 501: 'Server Error'
1337
+ }
1338
+ });
1339
+ };
1340
+
1341
+ /**
1342
+ * @param data The data for the request.
1343
+ * @param data.id
1344
+ * @returns unknown Success
1345
+ * @throws ApiError
1346
+ */
1347
+ export const getApiCrmServiceMerchantsByIdEmails = (data: GetApiCrmServiceMerchantsByIdEmailsData): CancelablePromise<GetApiCrmServiceMerchantsByIdEmailsResponse> => {
1348
+ return __request(OpenAPI, {
1349
+ method: 'GET',
1350
+ url: '/api/crm-service/merchants/{id}/emails',
1351
+ path: {
1352
+ id: data.id
1353
+ },
1354
+ errors: {
1355
+ 400: 'Bad Request',
1356
+ 401: 'Unauthorized',
1357
+ 403: 'Forbidden',
1358
+ 404: 'Not Found',
1359
+ 500: 'Server Error',
1360
+ 501: 'Server Error'
1361
+ }
1362
+ });
1363
+ };
1364
+
1365
+ /**
1366
+ * @param data The data for the request.
1367
+ * @param data.id
1368
+ * @param data.emailId
1369
+ * @param data.requestBody
1370
+ * @returns unknown Success
1371
+ * @throws ApiError
1372
+ */
1373
+ export const putApiCrmServiceMerchantsByIdEmailsByEmailId = (data: PutApiCrmServiceMerchantsByIdEmailsByEmailIdData): CancelablePromise<PutApiCrmServiceMerchantsByIdEmailsByEmailIdResponse> => {
1374
+ return __request(OpenAPI, {
1375
+ method: 'PUT',
1376
+ url: '/api/crm-service/merchants/{id}/emails/{emailId}',
1377
+ path: {
1378
+ id: data.id,
1379
+ emailId: data.emailId
1380
+ },
1381
+ body: data.requestBody,
1382
+ mediaType: 'application/json',
1383
+ errors: {
1384
+ 400: 'Bad Request',
1385
+ 401: 'Unauthorized',
1386
+ 403: 'Forbidden',
1387
+ 404: 'Not Found',
1388
+ 500: 'Server Error',
1389
+ 501: 'Server Error'
1390
+ }
1391
+ });
1392
+ };
1393
+
1394
+ /**
1395
+ * @param data The data for the request.
1396
+ * @param data.id
1397
+ * @param data.individualId
1398
+ * @param data.nameId
1399
+ * @param data.requestBody
1400
+ * @returns unknown Success
1401
+ * @throws ApiError
1402
+ */
1403
+ export const putApiCrmServiceMerchantsByIdIndividualByIndividualIdNameByNameId = (data: PutApiCrmServiceMerchantsByIdIndividualByIndividualIdNameByNameIdData): CancelablePromise<PutApiCrmServiceMerchantsByIdIndividualByIndividualIdNameByNameIdResponse> => {
1404
+ return __request(OpenAPI, {
1405
+ method: 'PUT',
1406
+ url: '/api/crm-service/merchants/{id}/individual/{individualId}/name/{nameId}',
1407
+ path: {
1408
+ id: data.id,
1409
+ individualId: data.individualId,
1410
+ nameId: data.nameId
1411
+ },
1412
+ body: data.requestBody,
1413
+ mediaType: 'application/json',
1414
+ errors: {
1415
+ 400: 'Bad Request',
1416
+ 401: 'Unauthorized',
1417
+ 403: 'Forbidden',
1418
+ 404: 'Not Found',
1419
+ 500: 'Server Error',
1420
+ 501: 'Server Error'
1421
+ }
1422
+ });
1423
+ };
1424
+
1425
+ /**
1426
+ * @param data The data for the request.
1427
+ * @param data.id
1428
+ * @param data.individualId
1429
+ * @param data.personalSummaryId
1430
+ * @param data.requestBody
1431
+ * @returns unknown Success
1432
+ * @throws ApiError
1433
+ */
1434
+ export const putApiCrmServiceMerchantsByIdIndividualByIndividualIdPersonalSummaryByPersonalSummaryId = (data: PutApiCrmServiceMerchantsByIdIndividualByIndividualIdPersonalSummaryByPersonalSummaryIdData): CancelablePromise<PutApiCrmServiceMerchantsByIdIndividualByIndividualIdPersonalSummaryByPersonalSummaryIdResponse> => {
1435
+ return __request(OpenAPI, {
1436
+ method: 'PUT',
1437
+ url: '/api/crm-service/merchants/{id}/individual/{individualId}/personal-summary/{personalSummaryId}',
1438
+ path: {
1439
+ id: data.id,
1440
+ individualId: data.individualId,
1441
+ personalSummaryId: data.personalSummaryId
1442
+ },
1443
+ body: data.requestBody,
1444
+ mediaType: 'application/json',
1445
+ errors: {
1446
+ 400: 'Bad Request',
1447
+ 401: 'Unauthorized',
1448
+ 403: 'Forbidden',
1449
+ 404: 'Not Found',
1450
+ 500: 'Server Error',
1451
+ 501: 'Server Error'
1452
+ }
1453
+ });
1454
+ };
1455
+
1456
+ /**
1457
+ * @param data The data for the request.
1458
+ * @param data.id
1459
+ * @returns unknown Success
1460
+ * @throws ApiError
1461
+ */
1462
+ export const getIntegrationApiMerchantsByIdBasicInformation = (data: GetIntegrationApiMerchantsByIdBasicInformationData): CancelablePromise<GetIntegrationApiMerchantsByIdBasicInformationResponse> => {
1463
+ return __request(OpenAPI, {
1464
+ method: 'GET',
1465
+ url: '/integration-api/merchants/{id}/basic-information',
1466
+ path: {
1467
+ id: data.id
1468
+ },
1469
+ errors: {
1470
+ 400: 'Bad Request',
1471
+ 401: 'Unauthorized',
1472
+ 403: 'Forbidden',
1473
+ 404: 'Not Found',
1474
+ 500: 'Server Error',
1475
+ 501: 'Server Error'
1476
+ }
1477
+ });
1478
+ };
1479
+
1480
+ /**
1481
+ * @param data The data for the request.
1482
+ * @param data.vatNumber
1483
+ * @param data.countryCode
1484
+ * @param data.customerNumber
1485
+ * @returns unknown Success
1486
+ * @throws ApiError
1487
+ */
1488
+ export const getIntegrationApiMerchantsInfo = (data: GetIntegrationApiMerchantsInfoData = {}): CancelablePromise<GetIntegrationApiMerchantsInfoResponse> => {
1489
+ return __request(OpenAPI, {
1490
+ method: 'GET',
1491
+ url: '/integration-api/merchants/info',
1492
+ query: {
1493
+ VatNumber: data.vatNumber,
1494
+ CountryCode: data.countryCode,
1495
+ CustomerNumber: data.customerNumber
1496
+ },
1497
+ errors: {
1498
+ 400: 'Bad Request',
1499
+ 401: 'Unauthorized',
1500
+ 403: 'Forbidden',
1501
+ 404: 'Not Found',
1502
+ 500: 'Server Error',
1503
+ 501: 'Server Error'
1504
+ }
1505
+ });
1506
+ };
1507
+
1508
+ /**
1509
+ * @param data The data for the request.
1510
+ * @param data.id
1511
+ * @returns string Success
1512
+ * @throws ApiError
1513
+ */
1514
+ export const getIntegrationApiMerchantsByIdParentIdOrSelfId = (data: GetIntegrationApiMerchantsByIdParentIdOrSelfIdData): CancelablePromise<GetIntegrationApiMerchantsByIdParentIdOrSelfIdResponse> => {
1515
+ return __request(OpenAPI, {
1516
+ method: 'GET',
1517
+ url: '/integration-api/merchants/{id}/parentId-or-selfId',
1518
+ path: {
1519
+ id: data.id
1520
+ },
1521
+ errors: {
1522
+ 400: 'Bad Request',
1523
+ 401: 'Unauthorized',
1524
+ 403: 'Forbidden',
1525
+ 404: 'Not Found',
1526
+ 500: 'Server Error',
1527
+ 501: 'Server Error'
1528
+ }
1529
+ });
1530
+ };
1531
+
1532
+ /**
1533
+ * @param data The data for the request.
1534
+ * @param data.id
1535
+ * @returns string Success
1536
+ * @throws ApiError
1537
+ */
1538
+ export const getIntegrationApiMerchantsByIdSubs = (data: GetIntegrationApiMerchantsByIdSubsData): CancelablePromise<GetIntegrationApiMerchantsByIdSubsResponse> => {
1539
+ return __request(OpenAPI, {
1540
+ method: 'GET',
1541
+ url: '/integration-api/merchants/{id}/subs',
1542
+ path: {
1543
+ id: data.id
1544
+ },
1545
+ errors: {
1546
+ 400: 'Bad Request',
1547
+ 401: 'Unauthorized',
1548
+ 403: 'Forbidden',
1549
+ 404: 'Not Found',
1550
+ 500: 'Server Error',
1551
+ 501: 'Server Error'
1552
+ }
1553
+ });
1554
+ };
1555
+
1556
+ /**
1557
+ * @param data The data for the request.
1558
+ * @param data.ids
1559
+ * @returns string Success
1560
+ * @throws ApiError
1561
+ */
1562
+ export const getIntegrationApiMerchantsNames = (data: GetIntegrationApiMerchantsNamesData = {}): CancelablePromise<GetIntegrationApiMerchantsNamesResponse> => {
1563
+ return __request(OpenAPI, {
1564
+ method: 'GET',
1565
+ url: '/integration-api/merchants/names',
1566
+ query: {
1567
+ ids: data.ids
1568
+ },
1569
+ errors: {
1570
+ 400: 'Bad Request',
1571
+ 401: 'Unauthorized',
1572
+ 403: 'Forbidden',
1573
+ 404: 'Not Found',
1574
+ 500: 'Server Error',
1575
+ 501: 'Server Error'
1576
+ }
1577
+ });
1578
+ };
1579
+
1580
+ /**
1581
+ * @param data The data for the request.
1582
+ * @param data.id
1583
+ * @param data.parentId
1584
+ * @param data.typeCode
1585
+ * @returns unknown Success
1586
+ * @throws ApiError
1587
+ */
1588
+ export const getIntegrationApiMerchantsByIdEnsureExist = (data: GetIntegrationApiMerchantsByIdEnsureExistData): CancelablePromise<GetIntegrationApiMerchantsByIdEnsureExistResponse> => {
1589
+ return __request(OpenAPI, {
1590
+ method: 'GET',
1591
+ url: '/integration-api/merchants/{id}/ensure-exist',
1592
+ path: {
1593
+ id: data.id
1594
+ },
1595
+ query: {
1596
+ parentId: data.parentId,
1597
+ typeCode: data.typeCode
1598
+ },
1599
+ errors: {
1600
+ 400: 'Bad Request',
1601
+ 401: 'Unauthorized',
1602
+ 403: 'Forbidden',
1603
+ 404: 'Not Found',
1604
+ 500: 'Server Error',
1605
+ 501: 'Server Error'
1606
+ }
1607
+ });
1608
+ };
1609
+
1610
+ /**
1611
+ * @param data The data for the request.
1612
+ * @param data.ids
1613
+ * @param data.parentId
1614
+ * @param data.typeCode
1615
+ * @returns unknown Success
1616
+ * @throws ApiError
1617
+ */
1618
+ export const getIntegrationApiMerchantsEnsureExistMany = (data: GetIntegrationApiMerchantsEnsureExistManyData = {}): CancelablePromise<GetIntegrationApiMerchantsEnsureExistManyResponse> => {
1619
+ return __request(OpenAPI, {
1620
+ method: 'GET',
1621
+ url: '/integration-api/merchants/ensure-exist-many',
1622
+ query: {
1623
+ ids: data.ids,
1624
+ parentId: data.parentId,
1625
+ typeCode: data.typeCode
1626
+ },
1627
+ errors: {
1628
+ 400: 'Bad Request',
1629
+ 401: 'Unauthorized',
1630
+ 403: 'Forbidden',
1631
+ 404: 'Not Found',
1632
+ 500: 'Server Error',
1633
+ 501: 'Server Error'
1634
+ }
1635
+ });
1636
+ };
1637
+
1638
+ /**
1639
+ * @param data The data for the request.
1640
+ * @param data.ids
1641
+ * @param data.typeCodes
1642
+ * @returns unknown Success
1643
+ * @throws ApiError
1644
+ */
1645
+ export const getIntegrationApiMerchants = (data: GetIntegrationApiMerchantsData): CancelablePromise<GetIntegrationApiMerchantsResponse> => {
1646
+ return __request(OpenAPI, {
1647
+ method: 'GET',
1648
+ url: '/integration-api/merchants',
1649
+ query: {
1650
+ Ids: data.ids,
1651
+ TypeCodes: data.typeCodes
1652
+ },
1653
+ errors: {
1654
+ 400: 'Bad Request',
1655
+ 401: 'Unauthorized',
1656
+ 403: 'Forbidden',
1657
+ 404: 'Not Found',
1658
+ 500: 'Server Error',
1659
+ 501: 'Server Error'
1660
+ }
1661
+ });
1662
+ };
1663
+
1664
+ /**
1665
+ * @param data The data for the request.
1666
+ * @param data.id
1667
+ * @param data.sorting
1668
+ * @param data.skipCount
1669
+ * @param data.maxResultCount
1670
+ * @returns unknown Success
1671
+ * @throws ApiError
1672
+ */
1673
+ export const getIntegrationApiMerchantsByIdStores = (data: GetIntegrationApiMerchantsByIdStoresData): CancelablePromise<GetIntegrationApiMerchantsByIdStoresResponse> => {
1674
+ return __request(OpenAPI, {
1675
+ method: 'GET',
1676
+ url: '/integration-api/merchants/{id}/stores',
1677
+ path: {
1678
+ id: data.id
1679
+ },
1680
+ query: {
1681
+ Sorting: data.sorting,
1682
+ SkipCount: data.skipCount,
1683
+ MaxResultCount: data.maxResultCount
1684
+ },
1685
+ errors: {
1686
+ 400: 'Bad Request',
1687
+ 401: 'Unauthorized',
1688
+ 403: 'Forbidden',
1689
+ 404: 'Not Found',
1690
+ 500: 'Server Error',
1691
+ 501: 'Server Error'
1692
+ }
1693
+ });
1694
+ };
1695
+
1696
+ /**
1697
+ * @param data The data for the request.
1698
+ * @param data.id
1699
+ * @returns unknown Success
1700
+ * @throws ApiError
1701
+ */
1702
+ export const getIntegrationApiMerchantsByIdDetail = (data: GetIntegrationApiMerchantsByIdDetailData): CancelablePromise<GetIntegrationApiMerchantsByIdDetailResponse> => {
1703
+ return __request(OpenAPI, {
1704
+ method: 'GET',
1705
+ url: '/integration-api/merchants/{id}/detail',
1706
+ path: {
1707
+ id: data.id
1708
+ },
1709
+ errors: {
1710
+ 400: 'Bad Request',
1711
+ 401: 'Unauthorized',
1712
+ 403: 'Forbidden',
1713
+ 404: 'Not Found',
1714
+ 500: 'Server Error',
1715
+ 501: 'Server Error'
1716
+ }
1717
+ });
1718
+ };
1719
+
1720
+ /**
1721
+ * @param data The data for the request.
1722
+ * @param data.ids
1723
+ * @returns unknown Success
1724
+ * @throws ApiError
1725
+ */
1726
+ export const getIntegrationApiMerchantsDetailsList = (data: GetIntegrationApiMerchantsDetailsListData = {}): CancelablePromise<GetIntegrationApiMerchantsDetailsListResponse> => {
1727
+ return __request(OpenAPI, {
1728
+ method: 'GET',
1729
+ url: '/integration-api/merchants/details-list',
1730
+ query: {
1731
+ ids: data.ids
1732
+ },
1733
+ errors: {
1734
+ 400: 'Bad Request',
1735
+ 401: 'Unauthorized',
1736
+ 403: 'Forbidden',
1737
+ 404: 'Not Found',
1738
+ 500: 'Server Error',
1739
+ 501: 'Server Error'
1740
+ }
1741
+ });
1742
+ };
1743
+
1744
+ /**
1745
+ * @param data The data for the request.
1746
+ * @param data.requestBody
1747
+ * @returns unknown Success
1748
+ * @throws ApiError
1749
+ */
1750
+ export const postApiCrmServiceOrganizationsWithComponents = (data: PostApiCrmServiceOrganizationsWithComponentsData = {}): CancelablePromise<PostApiCrmServiceOrganizationsWithComponentsResponse> => {
1751
+ return __request(OpenAPI, {
1752
+ method: 'POST',
1753
+ url: '/api/crm-service/organizations/with-components',
1754
+ body: data.requestBody,
1755
+ mediaType: 'application/json',
1756
+ errors: {
1757
+ 400: 'Bad Request',
1758
+ 401: 'Unauthorized',
1759
+ 403: 'Forbidden',
1760
+ 404: 'Not Found',
1761
+ 500: 'Server Error',
1762
+ 501: 'Server Error'
1763
+ }
1764
+ });
1765
+ };
1766
+
1767
+ /**
1768
+ * @param data The data for the request.
1769
+ * @param data.entityPartyTypeCode
1770
+ * @param data.parentId
1771
+ * @param data.name
1772
+ * @param data.sorting
1773
+ * @param data.skipCount
1774
+ * @param data.maxResultCount
1775
+ * @returns unknown Success
1776
+ * @throws ApiError
1777
+ */
1778
+ export const getApiCrmServiceOrganizations = (data: GetApiCrmServiceOrganizationsData = {}): CancelablePromise<GetApiCrmServiceOrganizationsResponse> => {
1779
+ return __request(OpenAPI, {
1780
+ method: 'GET',
1781
+ url: '/api/crm-service/organizations',
1782
+ query: {
1783
+ EntityPartyTypeCode: data.entityPartyTypeCode,
1784
+ ParentId: data.parentId,
1785
+ Name: data.name,
1786
+ Sorting: data.sorting,
1787
+ SkipCount: data.skipCount,
1788
+ MaxResultCount: data.maxResultCount
1789
+ },
1790
+ errors: {
1791
+ 400: 'Bad Request',
1792
+ 401: 'Unauthorized',
1793
+ 403: 'Forbidden',
1794
+ 404: 'Not Found',
1795
+ 500: 'Server Error',
1796
+ 501: 'Server Error'
1797
+ }
1798
+ });
1799
+ };
1800
+
1801
+ /**
1802
+ * @param data The data for the request.
1803
+ * @param data.ids
1804
+ * @param data.name
1805
+ * @param data.sorting
1806
+ * @param data.skipCount
1807
+ * @param data.maxResultCount
1808
+ * @returns unknown Success
1809
+ * @throws ApiError
1810
+ */
1811
+ export const getApiCrmServiceRefundPoints = (data: GetApiCrmServiceRefundPointsData = {}): CancelablePromise<GetApiCrmServiceRefundPointsResponse> => {
1812
+ return __request(OpenAPI, {
1813
+ method: 'GET',
1814
+ url: '/api/crm-service/refund-points',
1815
+ query: {
1816
+ Ids: data.ids,
1817
+ Name: data.name,
1818
+ Sorting: data.sorting,
1819
+ SkipCount: data.skipCount,
1820
+ MaxResultCount: data.maxResultCount
1821
+ },
1822
+ errors: {
1823
+ 400: 'Bad Request',
1824
+ 401: 'Unauthorized',
1825
+ 403: 'Forbidden',
1826
+ 404: 'Not Found',
1827
+ 500: 'Server Error',
1828
+ 501: 'Server Error'
1829
+ }
1830
+ });
1831
+ };
1832
+
1833
+ /**
1834
+ * @param data The data for the request.
1835
+ * @param data.ids
1836
+ * @param data.name
1837
+ * @param data.sorting
1838
+ * @param data.skipCount
1839
+ * @param data.maxResultCount
1840
+ * @returns unknown Success
1841
+ * @throws ApiError
1842
+ */
1843
+ export const getApiCrmServiceRefundPointsAccessible = (data: GetApiCrmServiceRefundPointsAccessibleData = {}): CancelablePromise<GetApiCrmServiceRefundPointsAccessibleResponse> => {
1844
+ return __request(OpenAPI, {
1845
+ method: 'GET',
1846
+ url: '/api/crm-service/refund-points/accessible',
1847
+ query: {
1848
+ Ids: data.ids,
1849
+ Name: data.name,
1850
+ Sorting: data.sorting,
1851
+ SkipCount: data.skipCount,
1852
+ MaxResultCount: data.maxResultCount
1853
+ },
1854
+ errors: {
1855
+ 400: 'Bad Request',
1856
+ 401: 'Unauthorized',
1857
+ 403: 'Forbidden',
1858
+ 404: 'Not Found',
1859
+ 500: 'Server Error',
1860
+ 501: 'Server Error'
1861
+ }
1862
+ });
1863
+ };
1864
+
1865
+ /**
1866
+ * @param data The data for the request.
1867
+ * @param data.id
1868
+ * @returns unknown Success
1869
+ * @throws ApiError
1870
+ */
1871
+ export const getApiCrmServiceRefundPointsById = (data: GetApiCrmServiceRefundPointsByIdData): CancelablePromise<GetApiCrmServiceRefundPointsByIdResponse> => {
1872
+ return __request(OpenAPI, {
1873
+ method: 'GET',
1874
+ url: '/api/crm-service/refund-points/{id}',
1875
+ path: {
1876
+ id: data.id
1877
+ },
1878
+ errors: {
1879
+ 400: 'Bad Request',
1880
+ 401: 'Unauthorized',
1881
+ 403: 'Forbidden',
1882
+ 404: 'Not Found',
1883
+ 500: 'Server Error',
1884
+ 501: 'Server Error'
1885
+ }
1886
+ });
1887
+ };
1888
+
1889
+ /**
1890
+ * @param data The data for the request.
1891
+ * @param data.id
1892
+ * @returns unknown Success
1893
+ * @throws ApiError
1894
+ */
1895
+ export const getApiCrmServiceRefundPointsByIdDetail = (data: GetApiCrmServiceRefundPointsByIdDetailData): CancelablePromise<GetApiCrmServiceRefundPointsByIdDetailResponse> => {
1896
+ return __request(OpenAPI, {
1897
+ method: 'GET',
1898
+ url: '/api/crm-service/refund-points/{id}/detail',
1899
+ path: {
1900
+ id: data.id
1901
+ },
1902
+ errors: {
1903
+ 400: 'Bad Request',
1904
+ 401: 'Unauthorized',
1905
+ 403: 'Forbidden',
1906
+ 404: 'Not Found',
1907
+ 500: 'Server Error',
1908
+ 501: 'Server Error'
1909
+ }
1910
+ });
1911
+ };
1912
+
1913
+ /**
1914
+ * @param data The data for the request.
1915
+ * @param data.id
1916
+ * @returns unknown Success
1917
+ * @throws ApiError
1918
+ */
1919
+ export const getApiCrmServiceRefundPointsByIdSubRefundPoints = (data: GetApiCrmServiceRefundPointsByIdSubRefundPointsData): CancelablePromise<GetApiCrmServiceRefundPointsByIdSubRefundPointsResponse> => {
1920
+ return __request(OpenAPI, {
1921
+ method: 'GET',
1922
+ url: '/api/crm-service/refund-points/{id}/sub-refund-points',
1923
+ path: {
1924
+ id: data.id
1925
+ },
1926
+ errors: {
1927
+ 400: 'Bad Request',
1928
+ 401: 'Unauthorized',
1929
+ 403: 'Forbidden',
1930
+ 404: 'Not Found',
1931
+ 500: 'Server Error',
1932
+ 501: 'Server Error'
1933
+ }
1934
+ });
1935
+ };
1936
+
1937
+ /**
1938
+ * @param data The data for the request.
1939
+ * @param data.requestBody
1940
+ * @returns unknown Success
1941
+ * @throws ApiError
1942
+ */
1943
+ export const postApiCrmServiceRefundPointsWithComponents = (data: PostApiCrmServiceRefundPointsWithComponentsData = {}): CancelablePromise<PostApiCrmServiceRefundPointsWithComponentsResponse> => {
1944
+ return __request(OpenAPI, {
1945
+ method: 'POST',
1946
+ url: '/api/crm-service/refund-points/with-components',
1947
+ body: data.requestBody,
1948
+ mediaType: 'application/json',
1949
+ errors: {
1950
+ 400: 'Bad Request',
1951
+ 401: 'Unauthorized',
1952
+ 403: 'Forbidden',
1953
+ 404: 'Not Found',
1954
+ 500: 'Server Error',
1955
+ 501: 'Server Error'
1956
+ }
1957
+ });
1958
+ };
1959
+
1960
+ /**
1961
+ * @param data The data for the request.
1962
+ * @param data.id
1963
+ * @returns unknown Success
1964
+ * @throws ApiError
1965
+ */
1966
+ export const deleteApiCrmServiceRefundPointsByIdWithComponents = (data: DeleteApiCrmServiceRefundPointsByIdWithComponentsData): CancelablePromise<DeleteApiCrmServiceRefundPointsByIdWithComponentsResponse> => {
1967
+ return __request(OpenAPI, {
1968
+ method: 'DELETE',
1969
+ url: '/api/crm-service/refund-points/{id}/with-components',
1970
+ path: {
1971
+ id: data.id
1972
+ },
1973
+ errors: {
1974
+ 400: 'Bad Request',
1975
+ 401: 'Unauthorized',
1976
+ 403: 'Forbidden',
1977
+ 404: 'Not Found',
1978
+ 500: 'Server Error',
1979
+ 501: 'Server Error'
1980
+ }
1981
+ });
1982
+ };
1983
+
1984
+ /**
1985
+ * @param data The data for the request.
1986
+ * @param data.id
1987
+ * @param data.requestBody
1988
+ * @returns unknown Success
1989
+ * @throws ApiError
1990
+ */
1991
+ export const postApiCrmServiceRefundPointsByIdAffiliations = (data: PostApiCrmServiceRefundPointsByIdAffiliationsData): CancelablePromise<PostApiCrmServiceRefundPointsByIdAffiliationsResponse> => {
1992
+ return __request(OpenAPI, {
1993
+ method: 'POST',
1994
+ url: '/api/crm-service/refund-points/{id}/affiliations',
1995
+ path: {
1996
+ id: data.id
1997
+ },
1998
+ body: data.requestBody,
1999
+ mediaType: 'application/json',
2000
+ errors: {
2001
+ 400: 'Bad Request',
2002
+ 401: 'Unauthorized',
2003
+ 403: 'Forbidden',
2004
+ 404: 'Not Found',
2005
+ 500: 'Server Error',
2006
+ 501: 'Server Error'
2007
+ }
2008
+ });
2009
+ };
2010
+
2011
+ /**
2012
+ * @param data The data for the request.
2013
+ * @param data.id
2014
+ * @param data.affiliationCodeId
2015
+ * @param data.entityInformationTypeCode
2016
+ * @param data.name
2017
+ * @param data.email
2018
+ * @param data.telephone
2019
+ * @param data.sorting
2020
+ * @param data.skipCount
2021
+ * @param data.maxResultCount
2022
+ * @returns unknown Success
2023
+ * @throws ApiError
2024
+ */
2025
+ export const getApiCrmServiceRefundPointsByIdAffiliations = (data: GetApiCrmServiceRefundPointsByIdAffiliationsData): CancelablePromise<GetApiCrmServiceRefundPointsByIdAffiliationsResponse> => {
2026
+ return __request(OpenAPI, {
2027
+ method: 'GET',
2028
+ url: '/api/crm-service/refund-points/{id}/affiliations',
2029
+ path: {
2030
+ id: data.id
2031
+ },
2032
+ query: {
2033
+ AffiliationCodeId: data.affiliationCodeId,
2034
+ EntityInformationTypeCode: data.entityInformationTypeCode,
2035
+ Name: data.name,
2036
+ Email: data.email,
2037
+ Telephone: data.telephone,
2038
+ Sorting: data.sorting,
2039
+ SkipCount: data.skipCount,
2040
+ MaxResultCount: data.maxResultCount
2041
+ },
2042
+ errors: {
2043
+ 400: 'Bad Request',
2044
+ 401: 'Unauthorized',
2045
+ 403: 'Forbidden',
2046
+ 404: 'Not Found',
2047
+ 500: 'Server Error',
2048
+ 501: 'Server Error'
2049
+ }
2050
+ });
2051
+ };
2052
+
2053
+ /**
2054
+ * @param data The data for the request.
2055
+ * @param data.id
2056
+ * @param data.affiliationId
2057
+ * @returns unknown Success
2058
+ * @throws ApiError
2059
+ */
2060
+ export const deleteApiCrmServiceRefundPointsByIdAffiliationsByAffiliationId = (data: DeleteApiCrmServiceRefundPointsByIdAffiliationsByAffiliationIdData): CancelablePromise<DeleteApiCrmServiceRefundPointsByIdAffiliationsByAffiliationIdResponse> => {
2061
+ return __request(OpenAPI, {
2062
+ method: 'DELETE',
2063
+ url: '/api/crm-service/refund-points/{id}/affiliations/{affiliationId}',
2064
+ path: {
2065
+ id: data.id,
2066
+ affiliationId: data.affiliationId
2067
+ },
2068
+ errors: {
2069
+ 400: 'Bad Request',
2070
+ 401: 'Unauthorized',
2071
+ 403: 'Forbidden',
2072
+ 404: 'Not Found',
2073
+ 500: 'Server Error',
2074
+ 501: 'Server Error'
2075
+ }
2076
+ });
2077
+ };
2078
+
2079
+ /**
2080
+ * @param data The data for the request.
2081
+ * @param data.id
2082
+ * @param data.organizationId
2083
+ * @param data.requestBody
2084
+ * @returns unknown Success
2085
+ * @throws ApiError
2086
+ */
2087
+ export const putApiCrmServiceRefundPointsByIdOrganizationsByOrganizationId = (data: PutApiCrmServiceRefundPointsByIdOrganizationsByOrganizationIdData): CancelablePromise<PutApiCrmServiceRefundPointsByIdOrganizationsByOrganizationIdResponse> => {
2088
+ return __request(OpenAPI, {
2089
+ method: 'PUT',
2090
+ url: '/api/crm-service/refund-points/{id}/organizations/{organizationId}',
2091
+ path: {
2092
+ id: data.id,
2093
+ organizationId: data.organizationId
2094
+ },
2095
+ body: data.requestBody,
2096
+ mediaType: 'application/json',
2097
+ errors: {
2098
+ 400: 'Bad Request',
2099
+ 401: 'Unauthorized',
2100
+ 403: 'Forbidden',
2101
+ 404: 'Not Found',
2102
+ 500: 'Server Error',
2103
+ 501: 'Server Error'
2104
+ }
2105
+ });
2106
+ };
2107
+
2108
+ /**
2109
+ * @param data The data for the request.
2110
+ * @param data.id
2111
+ * @param data.telephoneId
2112
+ * @param data.requestBody
2113
+ * @returns unknown Success
2114
+ * @throws ApiError
2115
+ */
2116
+ export const putApiCrmServiceRefundPointsByIdTelephonesByTelephoneId = (data: PutApiCrmServiceRefundPointsByIdTelephonesByTelephoneIdData): CancelablePromise<PutApiCrmServiceRefundPointsByIdTelephonesByTelephoneIdResponse> => {
2117
+ return __request(OpenAPI, {
2118
+ method: 'PUT',
2119
+ url: '/api/crm-service/refund-points/{id}/telephones/{telephoneId}',
2120
+ path: {
2121
+ id: data.id,
2122
+ telephoneId: data.telephoneId
2123
+ },
2124
+ body: data.requestBody,
2125
+ mediaType: 'application/json',
2126
+ errors: {
2127
+ 400: 'Bad Request',
2128
+ 401: 'Unauthorized',
2129
+ 403: 'Forbidden',
2130
+ 404: 'Not Found',
2131
+ 500: 'Server Error',
2132
+ 501: 'Server Error'
2133
+ }
2134
+ });
2135
+ };
2136
+
2137
+ /**
2138
+ * @param data The data for the request.
2139
+ * @param data.id
2140
+ * @param data.addressId
2141
+ * @param data.requestBody
2142
+ * @returns unknown Success
2143
+ * @throws ApiError
2144
+ */
2145
+ export const putApiCrmServiceRefundPointsByIdAddressesByAddressId = (data: PutApiCrmServiceRefundPointsByIdAddressesByAddressIdData): CancelablePromise<PutApiCrmServiceRefundPointsByIdAddressesByAddressIdResponse> => {
2146
+ return __request(OpenAPI, {
2147
+ method: 'PUT',
2148
+ url: '/api/crm-service/refund-points/{id}/addresses/{addressId}',
2149
+ path: {
2150
+ id: data.id,
2151
+ addressId: data.addressId
2152
+ },
2153
+ body: data.requestBody,
2154
+ mediaType: 'application/json',
2155
+ errors: {
2156
+ 400: 'Bad Request',
2157
+ 401: 'Unauthorized',
2158
+ 403: 'Forbidden',
2159
+ 404: 'Not Found',
2160
+ 500: 'Server Error',
2161
+ 501: 'Server Error'
2162
+ }
2163
+ });
2164
+ };
2165
+
2166
+ /**
2167
+ * @param data The data for the request.
2168
+ * @param data.id
2169
+ * @param data.emailId
2170
+ * @param data.requestBody
2171
+ * @returns unknown Success
2172
+ * @throws ApiError
2173
+ */
2174
+ export const putApiCrmServiceRefundPointsByIdEmailsByEmailId = (data: PutApiCrmServiceRefundPointsByIdEmailsByEmailIdData): CancelablePromise<PutApiCrmServiceRefundPointsByIdEmailsByEmailIdResponse> => {
2175
+ return __request(OpenAPI, {
2176
+ method: 'PUT',
2177
+ url: '/api/crm-service/refund-points/{id}/emails/{emailId}',
2178
+ path: {
2179
+ id: data.id,
2180
+ emailId: data.emailId
2181
+ },
2182
+ body: data.requestBody,
2183
+ mediaType: 'application/json',
2184
+ errors: {
2185
+ 400: 'Bad Request',
2186
+ 401: 'Unauthorized',
2187
+ 403: 'Forbidden',
2188
+ 404: 'Not Found',
2189
+ 500: 'Server Error',
2190
+ 501: 'Server Error'
2191
+ }
2192
+ });
2193
+ };
2194
+
2195
+ /**
2196
+ * @param data The data for the request.
2197
+ * @param data.id
2198
+ * @returns unknown Success
2199
+ * @throws ApiError
2200
+ */
2201
+ export const getApiCrmServiceRefundPointsByIdAffiliatedIndividual = (data: GetApiCrmServiceRefundPointsByIdAffiliatedIndividualData): CancelablePromise<GetApiCrmServiceRefundPointsByIdAffiliatedIndividualResponse> => {
2202
+ return __request(OpenAPI, {
2203
+ method: 'GET',
2204
+ url: '/api/crm-service/refund-points/{id}/affiliated-individual',
2205
+ path: {
2206
+ id: data.id
2207
+ },
2208
+ errors: {
2209
+ 400: 'Bad Request',
2210
+ 401: 'Unauthorized',
2211
+ 403: 'Forbidden',
2212
+ 404: 'Not Found',
2213
+ 500: 'Server Error',
2214
+ 501: 'Server Error'
2215
+ }
2216
+ });
2217
+ };
2218
+
2219
+ /**
2220
+ * @param data The data for the request.
2221
+ * @param data.id
2222
+ * @returns unknown Success
2223
+ * @throws ApiError
2224
+ */
2225
+ export const getApiCrmServiceRefundPointsByIdAddresses = (data: GetApiCrmServiceRefundPointsByIdAddressesData): CancelablePromise<GetApiCrmServiceRefundPointsByIdAddressesResponse> => {
2226
+ return __request(OpenAPI, {
2227
+ method: 'GET',
2228
+ url: '/api/crm-service/refund-points/{id}/addresses',
2229
+ path: {
2230
+ id: data.id
2231
+ },
2232
+ errors: {
2233
+ 400: 'Bad Request',
2234
+ 401: 'Unauthorized',
2235
+ 403: 'Forbidden',
2236
+ 404: 'Not Found',
2237
+ 500: 'Server Error',
2238
+ 501: 'Server Error'
2239
+ }
2240
+ });
2241
+ };
2242
+
2243
+ /**
2244
+ * @param data The data for the request.
2245
+ * @param data.id
2246
+ * @returns string Success
2247
+ * @throws ApiError
2248
+ */
2249
+ export const getIntegrationApiRefundPointsByIdParentIdOrSelfId = (data: GetIntegrationApiRefundPointsByIdParentIdOrSelfIdData): CancelablePromise<GetIntegrationApiRefundPointsByIdParentIdOrSelfIdResponse> => {
2250
+ return __request(OpenAPI, {
2251
+ method: 'GET',
2252
+ url: '/integration-api/refund-points/{id}/parentId-or-selfId',
2253
+ path: {
2254
+ id: data.id
2255
+ },
2256
+ errors: {
2257
+ 400: 'Bad Request',
2258
+ 401: 'Unauthorized',
2259
+ 403: 'Forbidden',
2260
+ 404: 'Not Found',
2261
+ 500: 'Server Error',
2262
+ 501: 'Server Error'
2263
+ }
2264
+ });
2265
+ };
2266
+
2267
+ /**
2268
+ * @param data The data for the request.
2269
+ * @param data.ids
2270
+ * @param data.name
2271
+ * @param data.sorting
2272
+ * @param data.skipCount
2273
+ * @param data.maxResultCount
2274
+ * @returns unknown Success
2275
+ * @throws ApiError
2276
+ */
2277
+ export const getIntegrationApiRefundPoints = (data: GetIntegrationApiRefundPointsData = {}): CancelablePromise<GetIntegrationApiRefundPointsResponse> => {
2278
+ return __request(OpenAPI, {
2279
+ method: 'GET',
2280
+ url: '/integration-api/refund-points',
2281
+ query: {
2282
+ Ids: data.ids,
2283
+ Name: data.name,
2284
+ Sorting: data.sorting,
2285
+ SkipCount: data.skipCount,
2286
+ MaxResultCount: data.maxResultCount
2287
+ },
2288
+ errors: {
2289
+ 400: 'Bad Request',
2290
+ 401: 'Unauthorized',
2291
+ 403: 'Forbidden',
2292
+ 404: 'Not Found',
2293
+ 500: 'Server Error',
2294
+ 501: 'Server Error'
2295
+ }
2296
+ });
2297
+ };
2298
+
2299
+ /**
2300
+ * @param data The data for the request.
2301
+ * @param data.id
2302
+ * @returns unknown Success
2303
+ * @throws ApiError
2304
+ */
2305
+ export const getIntegrationApiRefundPointsByIdDetailForRefund = (data: GetIntegrationApiRefundPointsByIdDetailForRefundData): CancelablePromise<GetIntegrationApiRefundPointsByIdDetailForRefundResponse> => {
2306
+ return __request(OpenAPI, {
2307
+ method: 'GET',
2308
+ url: '/integration-api/refund-points/{id}/detail-for-refund',
2309
+ path: {
2310
+ id: data.id
2311
+ },
2312
+ errors: {
2313
+ 400: 'Bad Request',
2314
+ 401: 'Unauthorized',
2315
+ 403: 'Forbidden',
2316
+ 404: 'Not Found',
2317
+ 500: 'Server Error',
2318
+ 501: 'Server Error'
2319
+ }
2320
+ });
2321
+ };
2322
+
2323
+ /**
2324
+ * @param data The data for the request.
2325
+ * @param data.ids
2326
+ * @param data.skipCount
2327
+ * @param data.maxResultCount
2328
+ * @returns unknown Success
2329
+ * @throws ApiError
2330
+ */
2331
+ export const getIntegrationApiRefundPointsRefundPointNames = (data: GetIntegrationApiRefundPointsRefundPointNamesData = {}): CancelablePromise<GetIntegrationApiRefundPointsRefundPointNamesResponse> => {
2332
+ return __request(OpenAPI, {
2333
+ method: 'GET',
2334
+ url: '/integration-api/refund-points/refund-point-names',
2335
+ query: {
2336
+ Ids: data.ids,
2337
+ SkipCount: data.skipCount,
2338
+ MaxResultCount: data.maxResultCount
2339
+ },
2340
+ errors: {
2341
+ 400: 'Bad Request',
2342
+ 401: 'Unauthorized',
2343
+ 403: 'Forbidden',
2344
+ 404: 'Not Found',
2345
+ 500: 'Server Error',
2346
+ 501: 'Server Error'
2347
+ }
2348
+ });
2349
+ };
2350
+
2351
+ /**
2352
+ * @param data The data for the request.
2353
+ * @param data.id
2354
+ * @param data.refundPointTypeCode
2355
+ * @returns unknown Success
2356
+ * @throws ApiError
2357
+ */
2358
+ export const getIntegrationApiRefundPointsByIdExist = (data: GetIntegrationApiRefundPointsByIdExistData): CancelablePromise<GetIntegrationApiRefundPointsByIdExistResponse> => {
2359
+ return __request(OpenAPI, {
2360
+ method: 'GET',
2361
+ url: '/integration-api/refund-points/{id}/exist',
2362
+ path: {
2363
+ id: data.id
2364
+ },
2365
+ query: {
2366
+ refundPointTypeCode: data.refundPointTypeCode
2367
+ },
2368
+ errors: {
2369
+ 400: 'Bad Request',
2370
+ 401: 'Unauthorized',
2371
+ 403: 'Forbidden',
2372
+ 404: 'Not Found',
2373
+ 500: 'Server Error',
2374
+ 501: 'Server Error'
2375
+ }
2376
+ });
2377
+ };
2378
+
2379
+ /**
2380
+ * @param data The data for the request.
2381
+ * @param data.id
2382
+ * @returns unknown Success
2383
+ * @throws ApiError
2384
+ */
2385
+ export const getIntegrationApiRefundPointsByIdBasicInformation = (data: GetIntegrationApiRefundPointsByIdBasicInformationData): CancelablePromise<GetIntegrationApiRefundPointsByIdBasicInformationResponse> => {
2386
+ return __request(OpenAPI, {
2387
+ method: 'GET',
2388
+ url: '/integration-api/refund-points/{id}/basic-information',
2389
+ path: {
2390
+ id: data.id
2391
+ },
2392
+ errors: {
2393
+ 400: 'Bad Request',
2394
+ 401: 'Unauthorized',
2395
+ 403: 'Forbidden',
2396
+ 404: 'Not Found',
2397
+ 500: 'Server Error',
2398
+ 501: 'Server Error'
2399
+ }
2400
+ });
2401
+ };
2402
+
2403
+ /**
2404
+ * @param data The data for the request.
2405
+ * @param data.name
2406
+ * @param data.sorting
2407
+ * @param data.skipCount
2408
+ * @param data.maxResultCount
2409
+ * @returns unknown Success
2410
+ * @throws ApiError
2411
+ */
2412
+ export const getApiCrmServiceTaxFrees = (data: GetApiCrmServiceTaxFreesData = {}): CancelablePromise<GetApiCrmServiceTaxFreesResponse> => {
2413
+ return __request(OpenAPI, {
2414
+ method: 'GET',
2415
+ url: '/api/crm-service/tax-frees',
2416
+ query: {
2417
+ Name: data.name,
2418
+ Sorting: data.sorting,
2419
+ SkipCount: data.skipCount,
2420
+ MaxResultCount: data.maxResultCount
2421
+ },
2422
+ errors: {
2423
+ 400: 'Bad Request',
2424
+ 401: 'Unauthorized',
2425
+ 403: 'Forbidden',
2426
+ 404: 'Not Found',
2427
+ 500: 'Server Error',
2428
+ 501: 'Server Error'
2429
+ }
2430
+ });
2431
+ };
2432
+
2433
+ /**
2434
+ * @param data The data for the request.
2435
+ * @param data.id
2436
+ * @returns unknown Success
2437
+ * @throws ApiError
2438
+ */
2439
+ export const getApiCrmServiceTaxFreesByIdDetail = (data: GetApiCrmServiceTaxFreesByIdDetailData): CancelablePromise<GetApiCrmServiceTaxFreesByIdDetailResponse> => {
2440
+ return __request(OpenAPI, {
2441
+ method: 'GET',
2442
+ url: '/api/crm-service/tax-frees/{id}/detail',
2443
+ path: {
2444
+ id: data.id
2445
+ },
2446
+ errors: {
2447
+ 400: 'Bad Request',
2448
+ 401: 'Unauthorized',
2449
+ 403: 'Forbidden',
2450
+ 404: 'Not Found',
2451
+ 500: 'Server Error',
2452
+ 501: 'Server Error'
2453
+ }
2454
+ });
2455
+ };
2456
+
2457
+ /**
2458
+ * @param data The data for the request.
2459
+ * @param data.id
2460
+ * @returns unknown Success
2461
+ * @throws ApiError
2462
+ */
2463
+ export const getApiCrmServiceTaxFreesByIdSubTaxFree = (data: GetApiCrmServiceTaxFreesByIdSubTaxFreeData): CancelablePromise<GetApiCrmServiceTaxFreesByIdSubTaxFreeResponse> => {
2464
+ return __request(OpenAPI, {
2465
+ method: 'GET',
2466
+ url: '/api/crm-service/tax-frees/{id}/sub-tax-free',
2467
+ path: {
2468
+ id: data.id
2469
+ },
2470
+ errors: {
2471
+ 400: 'Bad Request',
2472
+ 401: 'Unauthorized',
2473
+ 403: 'Forbidden',
2474
+ 404: 'Not Found',
2475
+ 500: 'Server Error',
2476
+ 501: 'Server Error'
2477
+ }
2478
+ });
2479
+ };
2480
+
2481
+ /**
2482
+ * @param data The data for the request.
2483
+ * @param data.requestBody
2484
+ * @returns unknown Success
2485
+ * @throws ApiError
2486
+ */
2487
+ export const postApiCrmServiceTaxFreesWithComponents = (data: PostApiCrmServiceTaxFreesWithComponentsData = {}): CancelablePromise<PostApiCrmServiceTaxFreesWithComponentsResponse> => {
2488
+ return __request(OpenAPI, {
2489
+ method: 'POST',
2490
+ url: '/api/crm-service/tax-frees/with-components',
2491
+ body: data.requestBody,
2492
+ mediaType: 'application/json',
2493
+ errors: {
2494
+ 400: 'Bad Request',
2495
+ 401: 'Unauthorized',
2496
+ 403: 'Forbidden',
2497
+ 404: 'Not Found',
2498
+ 500: 'Server Error',
2499
+ 501: 'Server Error'
2500
+ }
2501
+ });
2502
+ };
2503
+
2504
+ /**
2505
+ * @param data The data for the request.
2506
+ * @param data.id
2507
+ * @returns unknown Success
2508
+ * @throws ApiError
2509
+ */
2510
+ export const deleteApiCrmServiceTaxFreesByIdWithComponents = (data: DeleteApiCrmServiceTaxFreesByIdWithComponentsData): CancelablePromise<DeleteApiCrmServiceTaxFreesByIdWithComponentsResponse> => {
2511
+ return __request(OpenAPI, {
2512
+ method: 'DELETE',
2513
+ url: '/api/crm-service/tax-frees/{id}/with-components',
2514
+ path: {
2515
+ id: data.id
2516
+ },
2517
+ errors: {
2518
+ 400: 'Bad Request',
2519
+ 401: 'Unauthorized',
2520
+ 403: 'Forbidden',
2521
+ 404: 'Not Found',
2522
+ 500: 'Server Error',
2523
+ 501: 'Server Error'
2524
+ }
2525
+ });
2526
+ };
2527
+
2528
+ /**
2529
+ * @param data The data for the request.
2530
+ * @param data.id
2531
+ * @param data.requestBody
2532
+ * @returns unknown Success
2533
+ * @throws ApiError
2534
+ */
2535
+ export const postApiCrmServiceTaxFreesByIdAffiliations = (data: PostApiCrmServiceTaxFreesByIdAffiliationsData): CancelablePromise<PostApiCrmServiceTaxFreesByIdAffiliationsResponse> => {
2536
+ return __request(OpenAPI, {
2537
+ method: 'POST',
2538
+ url: '/api/crm-service/tax-frees/{id}/affiliations',
2539
+ path: {
2540
+ id: data.id
2541
+ },
2542
+ body: data.requestBody,
2543
+ mediaType: 'application/json',
2544
+ errors: {
2545
+ 400: 'Bad Request',
2546
+ 401: 'Unauthorized',
2547
+ 403: 'Forbidden',
2548
+ 404: 'Not Found',
2549
+ 500: 'Server Error',
2550
+ 501: 'Server Error'
2551
+ }
2552
+ });
2553
+ };
2554
+
2555
+ /**
2556
+ * @param data The data for the request.
2557
+ * @param data.id
2558
+ * @param data.affiliationCodeId
2559
+ * @param data.entityInformationTypeCode
2560
+ * @param data.name
2561
+ * @param data.email
2562
+ * @param data.telephone
2563
+ * @param data.sorting
2564
+ * @param data.skipCount
2565
+ * @param data.maxResultCount
2566
+ * @returns unknown Success
2567
+ * @throws ApiError
2568
+ */
2569
+ export const getApiCrmServiceTaxFreesByIdAffiliations = (data: GetApiCrmServiceTaxFreesByIdAffiliationsData): CancelablePromise<GetApiCrmServiceTaxFreesByIdAffiliationsResponse> => {
2570
+ return __request(OpenAPI, {
2571
+ method: 'GET',
2572
+ url: '/api/crm-service/tax-frees/{id}/affiliations',
2573
+ path: {
2574
+ id: data.id
2575
+ },
2576
+ query: {
2577
+ AffiliationCodeId: data.affiliationCodeId,
2578
+ EntityInformationTypeCode: data.entityInformationTypeCode,
2579
+ Name: data.name,
2580
+ Email: data.email,
2581
+ Telephone: data.telephone,
2582
+ Sorting: data.sorting,
2583
+ SkipCount: data.skipCount,
2584
+ MaxResultCount: data.maxResultCount
2585
+ },
2586
+ errors: {
2587
+ 400: 'Bad Request',
2588
+ 401: 'Unauthorized',
2589
+ 403: 'Forbidden',
2590
+ 404: 'Not Found',
2591
+ 500: 'Server Error',
2592
+ 501: 'Server Error'
2593
+ }
2594
+ });
2595
+ };
2596
+
2597
+ /**
2598
+ * @param data The data for the request.
2599
+ * @param data.id
2600
+ * @param data.affiliationId
2601
+ * @returns unknown Success
2602
+ * @throws ApiError
2603
+ */
2604
+ export const deleteApiCrmServiceTaxFreesByIdAffiliationsByAffiliationId = (data: DeleteApiCrmServiceTaxFreesByIdAffiliationsByAffiliationIdData): CancelablePromise<DeleteApiCrmServiceTaxFreesByIdAffiliationsByAffiliationIdResponse> => {
2605
+ return __request(OpenAPI, {
2606
+ method: 'DELETE',
2607
+ url: '/api/crm-service/tax-frees/{id}/affiliations/{affiliationId}',
2608
+ path: {
2609
+ id: data.id,
2610
+ affiliationId: data.affiliationId
2611
+ },
2612
+ errors: {
2613
+ 400: 'Bad Request',
2614
+ 401: 'Unauthorized',
2615
+ 403: 'Forbidden',
2616
+ 404: 'Not Found',
2617
+ 500: 'Server Error',
2618
+ 501: 'Server Error'
2619
+ }
2620
+ });
2621
+ };
2622
+
2623
+ /**
2624
+ * @param data The data for the request.
2625
+ * @param data.id
2626
+ * @param data.organizationId
2627
+ * @param data.requestBody
2628
+ * @returns unknown Success
2629
+ * @throws ApiError
2630
+ */
2631
+ export const putApiCrmServiceTaxFreesByIdOrganizationsByOrganizationId = (data: PutApiCrmServiceTaxFreesByIdOrganizationsByOrganizationIdData): CancelablePromise<PutApiCrmServiceTaxFreesByIdOrganizationsByOrganizationIdResponse> => {
2632
+ return __request(OpenAPI, {
2633
+ method: 'PUT',
2634
+ url: '/api/crm-service/tax-frees/{id}/organizations/{organizationId}',
2635
+ path: {
2636
+ id: data.id,
2637
+ organizationId: data.organizationId
2638
+ },
2639
+ body: data.requestBody,
2640
+ mediaType: 'application/json',
2641
+ errors: {
2642
+ 400: 'Bad Request',
2643
+ 401: 'Unauthorized',
2644
+ 403: 'Forbidden',
2645
+ 404: 'Not Found',
2646
+ 500: 'Server Error',
2647
+ 501: 'Server Error'
2648
+ }
2649
+ });
2650
+ };
2651
+
2652
+ /**
2653
+ * @param data The data for the request.
2654
+ * @param data.id
2655
+ * @param data.telephoneId
2656
+ * @param data.requestBody
2657
+ * @returns unknown Success
2658
+ * @throws ApiError
2659
+ */
2660
+ export const putApiCrmServiceTaxFreesByIdTelephonesByTelephoneId = (data: PutApiCrmServiceTaxFreesByIdTelephonesByTelephoneIdData): CancelablePromise<PutApiCrmServiceTaxFreesByIdTelephonesByTelephoneIdResponse> => {
2661
+ return __request(OpenAPI, {
2662
+ method: 'PUT',
2663
+ url: '/api/crm-service/tax-frees/{id}/telephones/{telephoneId}',
2664
+ path: {
2665
+ id: data.id,
2666
+ telephoneId: data.telephoneId
2667
+ },
2668
+ body: data.requestBody,
2669
+ mediaType: 'application/json',
2670
+ errors: {
2671
+ 400: 'Bad Request',
2672
+ 401: 'Unauthorized',
2673
+ 403: 'Forbidden',
2674
+ 404: 'Not Found',
2675
+ 500: 'Server Error',
2676
+ 501: 'Server Error'
2677
+ }
2678
+ });
2679
+ };
2680
+
2681
+ /**
2682
+ * @param data The data for the request.
2683
+ * @param data.id
2684
+ * @param data.addressId
2685
+ * @param data.requestBody
2686
+ * @returns unknown Success
2687
+ * @throws ApiError
2688
+ */
2689
+ export const putApiCrmServiceTaxFreesByIdAddressesByAddressId = (data: PutApiCrmServiceTaxFreesByIdAddressesByAddressIdData): CancelablePromise<PutApiCrmServiceTaxFreesByIdAddressesByAddressIdResponse> => {
2690
+ return __request(OpenAPI, {
2691
+ method: 'PUT',
2692
+ url: '/api/crm-service/tax-frees/{id}/addresses/{addressId}',
2693
+ path: {
2694
+ id: data.id,
2695
+ addressId: data.addressId
2696
+ },
2697
+ body: data.requestBody,
2698
+ mediaType: 'application/json',
2699
+ errors: {
2700
+ 400: 'Bad Request',
2701
+ 401: 'Unauthorized',
2702
+ 403: 'Forbidden',
2703
+ 404: 'Not Found',
2704
+ 500: 'Server Error',
2705
+ 501: 'Server Error'
2706
+ }
2707
+ });
2708
+ };
2709
+
2710
+ /**
2711
+ * @param data The data for the request.
2712
+ * @param data.id
2713
+ * @param data.emailId
2714
+ * @param data.requestBody
2715
+ * @returns unknown Success
2716
+ * @throws ApiError
2717
+ */
2718
+ export const putApiCrmServiceTaxFreesByIdEmailsByEmailId = (data: PutApiCrmServiceTaxFreesByIdEmailsByEmailIdData): CancelablePromise<PutApiCrmServiceTaxFreesByIdEmailsByEmailIdResponse> => {
2719
+ return __request(OpenAPI, {
2720
+ method: 'PUT',
2721
+ url: '/api/crm-service/tax-frees/{id}/emails/{emailId}',
2722
+ path: {
2723
+ id: data.id,
2724
+ emailId: data.emailId
2725
+ },
2726
+ body: data.requestBody,
2727
+ mediaType: 'application/json',
2728
+ errors: {
2729
+ 400: 'Bad Request',
2730
+ 401: 'Unauthorized',
2731
+ 403: 'Forbidden',
2732
+ 404: 'Not Found',
2733
+ 500: 'Server Error',
2734
+ 501: 'Server Error'
2735
+ }
2736
+ });
2737
+ };
2738
+
2739
+ /**
2740
+ * @param data The data for the request.
2741
+ * @param data.id
2742
+ * @returns unknown Success
2743
+ * @throws ApiError
2744
+ */
2745
+ export const getApiCrmServiceTaxFreesByIdAffiliatedIndividuals = (data: GetApiCrmServiceTaxFreesByIdAffiliatedIndividualsData): CancelablePromise<GetApiCrmServiceTaxFreesByIdAffiliatedIndividualsResponse> => {
2746
+ return __request(OpenAPI, {
2747
+ method: 'GET',
2748
+ url: '/api/crm-service/tax-frees/{id}/affiliated-individuals',
2749
+ path: {
2750
+ id: data.id
2751
+ },
2752
+ errors: {
2753
+ 400: 'Bad Request',
2754
+ 401: 'Unauthorized',
2755
+ 403: 'Forbidden',
2756
+ 404: 'Not Found',
2757
+ 500: 'Server Error',
2758
+ 501: 'Server Error'
2759
+ }
2760
+ });
2761
+ };
2762
+
2763
+ /**
2764
+ * @param data The data for the request.
2765
+ * @param data.name
2766
+ * @param data.sorting
2767
+ * @param data.skipCount
2768
+ * @param data.maxResultCount
2769
+ * @returns unknown Success
2770
+ * @throws ApiError
2771
+ */
2772
+ export const getApiCrmServiceTaxOffices = (data: GetApiCrmServiceTaxOfficesData = {}): CancelablePromise<GetApiCrmServiceTaxOfficesResponse> => {
2773
+ return __request(OpenAPI, {
2774
+ method: 'GET',
2775
+ url: '/api/crm-service/tax-offices',
2776
+ query: {
2777
+ Name: data.name,
2778
+ Sorting: data.sorting,
2779
+ SkipCount: data.skipCount,
2780
+ MaxResultCount: data.maxResultCount
2781
+ },
2782
+ errors: {
2783
+ 400: 'Bad Request',
2784
+ 401: 'Unauthorized',
2785
+ 403: 'Forbidden',
2786
+ 404: 'Not Found',
2787
+ 500: 'Server Error',
2788
+ 501: 'Server Error'
2789
+ }
2790
+ });
2791
+ };
2792
+
2793
+ /**
2794
+ * @param data The data for the request.
2795
+ * @param data.id
2796
+ * @returns unknown Success
2797
+ * @throws ApiError
2798
+ */
2799
+ export const getApiCrmServiceTaxOfficesById = (data: GetApiCrmServiceTaxOfficesByIdData): CancelablePromise<GetApiCrmServiceTaxOfficesByIdResponse> => {
2800
+ return __request(OpenAPI, {
2801
+ method: 'GET',
2802
+ url: '/api/crm-service/tax-offices/{id}',
2803
+ path: {
2804
+ id: data.id
2805
+ },
2806
+ errors: {
2807
+ 400: 'Bad Request',
2808
+ 401: 'Unauthorized',
2809
+ 403: 'Forbidden',
2810
+ 404: 'Not Found',
2811
+ 500: 'Server Error',
2812
+ 501: 'Server Error'
2813
+ }
2814
+ });
2815
+ };
2816
+
2817
+ /**
2818
+ * @param data The data for the request.
2819
+ * @param data.id
2820
+ * @returns unknown Success
2821
+ * @throws ApiError
2822
+ */
2823
+ export const getApiCrmServiceTaxOfficesByIdDetail = (data: GetApiCrmServiceTaxOfficesByIdDetailData): CancelablePromise<GetApiCrmServiceTaxOfficesByIdDetailResponse> => {
2824
+ return __request(OpenAPI, {
2825
+ method: 'GET',
2826
+ url: '/api/crm-service/tax-offices/{id}/detail',
2827
+ path: {
2828
+ id: data.id
2829
+ },
2830
+ errors: {
2831
+ 400: 'Bad Request',
2832
+ 401: 'Unauthorized',
2833
+ 403: 'Forbidden',
2834
+ 404: 'Not Found',
2835
+ 500: 'Server Error',
2836
+ 501: 'Server Error'
2837
+ }
2838
+ });
2839
+ };
2840
+
2841
+ /**
2842
+ * @param data The data for the request.
2843
+ * @param data.id
2844
+ * @returns unknown Success
2845
+ * @throws ApiError
2846
+ */
2847
+ export const getApiCrmServiceTaxOfficesByIdSubTaxOffices = (data: GetApiCrmServiceTaxOfficesByIdSubTaxOfficesData): CancelablePromise<GetApiCrmServiceTaxOfficesByIdSubTaxOfficesResponse> => {
2848
+ return __request(OpenAPI, {
2849
+ method: 'GET',
2850
+ url: '/api/crm-service/tax-offices/{id}/sub-tax-offices',
2851
+ path: {
2852
+ id: data.id
2853
+ },
2854
+ errors: {
2855
+ 400: 'Bad Request',
2856
+ 401: 'Unauthorized',
2857
+ 403: 'Forbidden',
2858
+ 404: 'Not Found',
2859
+ 500: 'Server Error',
2860
+ 501: 'Server Error'
2861
+ }
2862
+ });
2863
+ };
2864
+
2865
+ /**
2866
+ * @param data The data for the request.
2867
+ * @param data.requestBody
2868
+ * @returns unknown Success
2869
+ * @throws ApiError
2870
+ */
2871
+ export const postApiCrmServiceTaxOfficesWithComponents = (data: PostApiCrmServiceTaxOfficesWithComponentsData = {}): CancelablePromise<PostApiCrmServiceTaxOfficesWithComponentsResponse> => {
2872
+ return __request(OpenAPI, {
2873
+ method: 'POST',
2874
+ url: '/api/crm-service/tax-offices/with-components',
2875
+ body: data.requestBody,
2876
+ mediaType: 'application/json',
2877
+ errors: {
2878
+ 400: 'Bad Request',
2879
+ 401: 'Unauthorized',
2880
+ 403: 'Forbidden',
2881
+ 404: 'Not Found',
2882
+ 500: 'Server Error',
2883
+ 501: 'Server Error'
2884
+ }
2885
+ });
2886
+ };
2887
+
2888
+ /**
2889
+ * @param data The data for the request.
2890
+ * @param data.id
2891
+ * @returns unknown Success
2892
+ * @throws ApiError
2893
+ */
2894
+ export const deleteApiCrmServiceTaxOfficesByIdWithComponents = (data: DeleteApiCrmServiceTaxOfficesByIdWithComponentsData): CancelablePromise<DeleteApiCrmServiceTaxOfficesByIdWithComponentsResponse> => {
2895
+ return __request(OpenAPI, {
2896
+ method: 'DELETE',
2897
+ url: '/api/crm-service/tax-offices/{id}/with-components',
2898
+ path: {
2899
+ id: data.id
2900
+ },
2901
+ errors: {
2902
+ 400: 'Bad Request',
2903
+ 401: 'Unauthorized',
2904
+ 403: 'Forbidden',
2905
+ 404: 'Not Found',
2906
+ 500: 'Server Error',
2907
+ 501: 'Server Error'
2908
+ }
2909
+ });
2910
+ };
2911
+
2912
+ /**
2913
+ * @param data The data for the request.
2914
+ * @param data.id
2915
+ * @param data.requestBody
2916
+ * @returns unknown Success
2917
+ * @throws ApiError
2918
+ */
2919
+ export const postApiCrmServiceTaxOfficesByIdAffiliations = (data: PostApiCrmServiceTaxOfficesByIdAffiliationsData): CancelablePromise<PostApiCrmServiceTaxOfficesByIdAffiliationsResponse> => {
2920
+ return __request(OpenAPI, {
2921
+ method: 'POST',
2922
+ url: '/api/crm-service/tax-offices/{id}/affiliations',
2923
+ path: {
2924
+ id: data.id
2925
+ },
2926
+ body: data.requestBody,
2927
+ mediaType: 'application/json',
2928
+ errors: {
2929
+ 400: 'Bad Request',
2930
+ 401: 'Unauthorized',
2931
+ 403: 'Forbidden',
2932
+ 404: 'Not Found',
2933
+ 500: 'Server Error',
2934
+ 501: 'Server Error'
2935
+ }
2936
+ });
2937
+ };
2938
+
2939
+ /**
2940
+ * @param data The data for the request.
2941
+ * @param data.id
2942
+ * @param data.affiliationCodeId
2943
+ * @param data.entityInformationTypeCode
2944
+ * @param data.name
2945
+ * @param data.email
2946
+ * @param data.telephone
2947
+ * @param data.sorting
2948
+ * @param data.skipCount
2949
+ * @param data.maxResultCount
2950
+ * @returns unknown Success
2951
+ * @throws ApiError
2952
+ */
2953
+ export const getApiCrmServiceTaxOfficesByIdAffiliations = (data: GetApiCrmServiceTaxOfficesByIdAffiliationsData): CancelablePromise<GetApiCrmServiceTaxOfficesByIdAffiliationsResponse> => {
2954
+ return __request(OpenAPI, {
2955
+ method: 'GET',
2956
+ url: '/api/crm-service/tax-offices/{id}/affiliations',
2957
+ path: {
2958
+ id: data.id
2959
+ },
2960
+ query: {
2961
+ AffiliationCodeId: data.affiliationCodeId,
2962
+ EntityInformationTypeCode: data.entityInformationTypeCode,
2963
+ Name: data.name,
2964
+ Email: data.email,
2965
+ Telephone: data.telephone,
2966
+ Sorting: data.sorting,
2967
+ SkipCount: data.skipCount,
2968
+ MaxResultCount: data.maxResultCount
2969
+ },
2970
+ errors: {
2971
+ 400: 'Bad Request',
2972
+ 401: 'Unauthorized',
2973
+ 403: 'Forbidden',
2974
+ 404: 'Not Found',
2975
+ 500: 'Server Error',
2976
+ 501: 'Server Error'
2977
+ }
2978
+ });
2979
+ };
2980
+
2981
+ /**
2982
+ * @param data The data for the request.
2983
+ * @param data.id
2984
+ * @param data.affiliationId
2985
+ * @returns unknown Success
2986
+ * @throws ApiError
2987
+ */
2988
+ export const deleteApiCrmServiceTaxOfficesByIdAffiliationsByAffiliationId = (data: DeleteApiCrmServiceTaxOfficesByIdAffiliationsByAffiliationIdData): CancelablePromise<DeleteApiCrmServiceTaxOfficesByIdAffiliationsByAffiliationIdResponse> => {
2989
+ return __request(OpenAPI, {
2990
+ method: 'DELETE',
2991
+ url: '/api/crm-service/tax-offices/{id}/affiliations/{affiliationId}',
2992
+ path: {
2993
+ id: data.id,
2994
+ affiliationId: data.affiliationId
2995
+ },
2996
+ errors: {
2997
+ 400: 'Bad Request',
2998
+ 401: 'Unauthorized',
2999
+ 403: 'Forbidden',
3000
+ 404: 'Not Found',
3001
+ 500: 'Server Error',
3002
+ 501: 'Server Error'
3003
+ }
3004
+ });
3005
+ };
3006
+
3007
+ /**
3008
+ * @param data The data for the request.
3009
+ * @param data.id
3010
+ * @param data.organizationId
3011
+ * @param data.requestBody
3012
+ * @returns unknown Success
3013
+ * @throws ApiError
3014
+ */
3015
+ export const putApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationId = (data: PutApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationIdData): CancelablePromise<PutApiCrmServiceTaxOfficesByIdOrganizationsByOrganizationIdResponse> => {
3016
+ return __request(OpenAPI, {
3017
+ method: 'PUT',
3018
+ url: '/api/crm-service/tax-offices/{id}/organizations/{organizationId}',
3019
+ path: {
3020
+ id: data.id,
3021
+ organizationId: data.organizationId
3022
+ },
3023
+ body: data.requestBody,
3024
+ mediaType: 'application/json',
3025
+ errors: {
3026
+ 400: 'Bad Request',
3027
+ 401: 'Unauthorized',
3028
+ 403: 'Forbidden',
3029
+ 404: 'Not Found',
3030
+ 500: 'Server Error',
3031
+ 501: 'Server Error'
3032
+ }
3033
+ });
3034
+ };
3035
+
3036
+ /**
3037
+ * @param data The data for the request.
3038
+ * @param data.id
3039
+ * @param data.telephoneId
3040
+ * @param data.requestBody
3041
+ * @returns unknown Success
3042
+ * @throws ApiError
3043
+ */
3044
+ export const putApiCrmServiceTaxOfficesByIdTelephonesByTelephoneId = (data: PutApiCrmServiceTaxOfficesByIdTelephonesByTelephoneIdData): CancelablePromise<PutApiCrmServiceTaxOfficesByIdTelephonesByTelephoneIdResponse> => {
3045
+ return __request(OpenAPI, {
3046
+ method: 'PUT',
3047
+ url: '/api/crm-service/tax-offices/{id}/telephones/{telephoneId}',
3048
+ path: {
3049
+ id: data.id,
3050
+ telephoneId: data.telephoneId
3051
+ },
3052
+ body: data.requestBody,
3053
+ mediaType: 'application/json',
3054
+ errors: {
3055
+ 400: 'Bad Request',
3056
+ 401: 'Unauthorized',
3057
+ 403: 'Forbidden',
3058
+ 404: 'Not Found',
3059
+ 500: 'Server Error',
3060
+ 501: 'Server Error'
3061
+ }
3062
+ });
3063
+ };
3064
+
3065
+ /**
3066
+ * @param data The data for the request.
3067
+ * @param data.id
3068
+ * @param data.addressId
3069
+ * @param data.requestBody
3070
+ * @returns unknown Success
3071
+ * @throws ApiError
3072
+ */
3073
+ export const putApiCrmServiceTaxOfficesByIdAddressesByAddressId = (data: PutApiCrmServiceTaxOfficesByIdAddressesByAddressIdData): CancelablePromise<PutApiCrmServiceTaxOfficesByIdAddressesByAddressIdResponse> => {
3074
+ return __request(OpenAPI, {
3075
+ method: 'PUT',
3076
+ url: '/api/crm-service/tax-offices/{id}/addresses/{addressId}',
3077
+ path: {
3078
+ id: data.id,
3079
+ addressId: data.addressId
3080
+ },
3081
+ body: data.requestBody,
3082
+ mediaType: 'application/json',
3083
+ errors: {
3084
+ 400: 'Bad Request',
3085
+ 401: 'Unauthorized',
3086
+ 403: 'Forbidden',
3087
+ 404: 'Not Found',
3088
+ 500: 'Server Error',
3089
+ 501: 'Server Error'
3090
+ }
3091
+ });
3092
+ };
3093
+
3094
+ /**
3095
+ * @param data The data for the request.
3096
+ * @param data.id
3097
+ * @param data.emailId
3098
+ * @param data.requestBody
3099
+ * @returns unknown Success
3100
+ * @throws ApiError
3101
+ */
3102
+ export const putApiCrmServiceTaxOfficesByIdEmailsByEmailId = (data: PutApiCrmServiceTaxOfficesByIdEmailsByEmailIdData): CancelablePromise<PutApiCrmServiceTaxOfficesByIdEmailsByEmailIdResponse> => {
3103
+ return __request(OpenAPI, {
3104
+ method: 'PUT',
3105
+ url: '/api/crm-service/tax-offices/{id}/emails/{emailId}',
3106
+ path: {
3107
+ id: data.id,
3108
+ emailId: data.emailId
3109
+ },
3110
+ body: data.requestBody,
3111
+ mediaType: 'application/json',
3112
+ errors: {
3113
+ 400: 'Bad Request',
3114
+ 401: 'Unauthorized',
3115
+ 403: 'Forbidden',
3116
+ 404: 'Not Found',
3117
+ 500: 'Server Error',
3118
+ 501: 'Server Error'
3119
+ }
3120
+ });
3121
+ };
3122
+
3123
+ /**
3124
+ * @param data The data for the request.
3125
+ * @param data.id
3126
+ * @returns unknown Success
3127
+ * @throws ApiError
3128
+ */
3129
+ export const getApiCrmServiceTaxOfficesByIdAffiliatedIndividuals = (data: GetApiCrmServiceTaxOfficesByIdAffiliatedIndividualsData): CancelablePromise<GetApiCrmServiceTaxOfficesByIdAffiliatedIndividualsResponse> => {
3130
+ return __request(OpenAPI, {
3131
+ method: 'GET',
3132
+ url: '/api/crm-service/tax-offices/{id}/affiliated-individuals',
3133
+ path: {
3134
+ id: data.id
3135
+ },
3136
+ errors: {
3137
+ 400: 'Bad Request',
3138
+ 401: 'Unauthorized',
3139
+ 403: 'Forbidden',
3140
+ 404: 'Not Found',
3141
+ 500: 'Server Error',
3142
+ 501: 'Server Error'
3143
+ }
3144
+ });
3145
+ };
3146
+
3147
+ /**
3148
+ * @param data The data for the request.
3149
+ * @param data.id
3150
+ * @returns unknown Success
3151
+ * @throws ApiError
3152
+ */
3153
+ export const getIntegrationApiTaxOfficesById = (data: GetIntegrationApiTaxOfficesByIdData): CancelablePromise<GetIntegrationApiTaxOfficesByIdResponse> => {
3154
+ return __request(OpenAPI, {
3155
+ method: 'GET',
3156
+ url: '/integration-api/tax-offices/{id}',
3157
+ path: {
3158
+ id: data.id
3159
+ },
3160
+ errors: {
3161
+ 400: 'Bad Request',
3162
+ 401: 'Unauthorized',
3163
+ 403: 'Forbidden',
3164
+ 404: 'Not Found',
3165
+ 500: 'Server Error',
3166
+ 501: 'Server Error'
3167
+ }
3168
+ });
3169
+ };
3170
+
3171
+ /**
3172
+ * @param data The data for the request.
3173
+ * @param data.id
3174
+ * @returns boolean Success
3175
+ * @throws ApiError
3176
+ */
3177
+ export const getIntegrationApiTaxOfficesByIdAny = (data: GetIntegrationApiTaxOfficesByIdAnyData): CancelablePromise<GetIntegrationApiTaxOfficesByIdAnyResponse> => {
3178
+ return __request(OpenAPI, {
3179
+ method: 'GET',
3180
+ url: '/integration-api/tax-offices/{id}/any',
3181
+ path: {
3182
+ id: data.id
3183
+ },
3184
+ errors: {
3185
+ 400: 'Bad Request',
3186
+ 401: 'Unauthorized',
3187
+ 403: 'Forbidden',
3188
+ 404: 'Not Found',
3189
+ 500: 'Server Error',
3190
+ 501: 'Server Error'
3191
+ }
3192
+ });
3193
+ };