@ayasofyazilim/saas 0.0.101 → 0.0.103

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (577) hide show
  1. package/.github/workflows/release.yaml +45 -45
  2. package/.github/workflows/update.yaml +93 -71
  3. package/.github/workflows/update_release.yaml +33 -33
  4. package/API_LIST.json +67 -0
  5. package/AccountService/AccountServiceClient.ts +68 -68
  6. package/AccountService/core/ApiError.ts +20 -20
  7. package/AccountService/core/ApiRequestOptions.ts +12 -12
  8. package/AccountService/core/ApiResult.ts +6 -6
  9. package/AccountService/core/BaseHttpRequest.ts +9 -9
  10. package/AccountService/core/CancelablePromise.ts +125 -125
  11. package/AccountService/core/FetchHttpRequest.ts +21 -21
  12. package/AccountService/core/OpenAPI.ts +55 -55
  13. package/AccountService/core/request.ts +340 -340
  14. package/AccountService/index.ts +8 -8
  15. package/AccountService/models/Volo_Abp_Account_AccountExternalProviderSettingsDto.ts +9 -9
  16. package/AccountService/models/Volo_Abp_Account_AccountRecaptchaSettingsDto.ts +14 -14
  17. package/AccountService/models/Volo_Abp_Account_AccountSettingsDto.ts +9 -9
  18. package/AccountService/models/Volo_Abp_Account_AccountTwoFactorSettingsDto.ts +11 -11
  19. package/AccountService/models/Volo_Abp_Account_AuthenticatorInfoDto.ts +9 -9
  20. package/AccountService/models/Volo_Abp_Account_ChangePasswordInput.ts +9 -9
  21. package/AccountService/models/Volo_Abp_Account_ConfirmEmailInput.ts +9 -9
  22. package/AccountService/models/Volo_Abp_Account_ConfirmPhoneNumberInput.ts +9 -9
  23. package/AccountService/models/Volo_Abp_Account_DelegateNewUserInput.ts +10 -10
  24. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderDto.ts +9 -9
  25. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemDto.ts +11 -11
  26. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto.ts +13 -13
  27. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettings.ts +12 -12
  28. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty.ts +9 -9
  29. package/AccountService/models/Volo_Abp_Account_IdentityUserConfirmationStateDto.ts +9 -9
  30. package/AccountService/models/Volo_Abp_Account_IsLinkedInput.ts +9 -9
  31. package/AccountService/models/Volo_Abp_Account_LinkUserDto.ts +12 -12
  32. package/AccountService/models/Volo_Abp_Account_LinkUserInput.ts +10 -10
  33. package/AccountService/models/Volo_Abp_Account_ProfileDto.ts +20 -20
  34. package/AccountService/models/Volo_Abp_Account_ProfilePictureSourceDto.ts +11 -11
  35. package/AccountService/models/Volo_Abp_Account_ProfilePictureType.ts +9 -9
  36. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult.ts +10 -10
  37. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LinkUserLoginInfo.ts +9 -9
  38. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LoginResultType.ts +12 -12
  39. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_UserLoginInfo.ts +11 -11
  40. package/AccountService/models/Volo_Abp_Account_RegisterDto.ts +15 -15
  41. package/AccountService/models/Volo_Abp_Account_ResetPasswordDto.ts +10 -10
  42. package/AccountService/models/Volo_Abp_Account_SendEmailConfirmationTokenDto.ts +11 -11
  43. package/AccountService/models/Volo_Abp_Account_SendPasswordResetCodeDto.ts +11 -11
  44. package/AccountService/models/Volo_Abp_Account_SendPhoneNumberConfirmationTokenDto.ts +9 -9
  45. package/AccountService/models/Volo_Abp_Account_SendTwoFactorCodeInput.ts +10 -10
  46. package/AccountService/models/Volo_Abp_Account_UnLinkUserInput.ts +9 -9
  47. package/AccountService/models/Volo_Abp_Account_UpdateExternalProviderDto.ts +12 -12
  48. package/AccountService/models/Volo_Abp_Account_UpdateProfileDto.ts +15 -15
  49. package/AccountService/models/Volo_Abp_Account_UserDelegationDto.ts +11 -11
  50. package/AccountService/models/Volo_Abp_Account_UserLookupDto.ts +9 -9
  51. package/AccountService/models/Volo_Abp_Account_VerifyAuthenticatorCodeDto.ts +8 -8
  52. package/AccountService/models/Volo_Abp_Account_VerifyAuthenticatorCodeInput.ts +8 -8
  53. package/AccountService/models/Volo_Abp_Account_VerifyEmailConfirmationTokenInput.ts +9 -9
  54. package/AccountService/models/Volo_Abp_Account_VerifyLinkLoginTokenInput.ts +10 -10
  55. package/AccountService/models/Volo_Abp_Account_VerifyLinkTokenInput.ts +10 -10
  56. package/AccountService/models/Volo_Abp_Account_VerifyPasswordResetTokenInput.ts +9 -9
  57. package/AccountService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -9
  58. package/AccountService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -10
  59. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -8
  60. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -30
  61. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -8
  62. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -8
  63. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -18
  64. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -9
  65. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -9
  66. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -8
  67. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -8
  68. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -17
  69. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -22
  70. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -14
  71. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -8
  72. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -10
  73. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -10
  74. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -9
  75. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -8
  76. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -13
  77. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -8
  78. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -8
  79. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -9
  80. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -19
  81. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -14
  82. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -8
  83. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -12
  84. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -8
  85. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -9
  86. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -10
  87. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -11
  88. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -11
  89. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -9
  90. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -8
  91. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -10
  92. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto.ts +11 -11
  93. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -8
  94. package/AccountService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -20
  95. package/AccountService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -11
  96. package/AccountService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -17
  97. package/AccountService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -11
  98. package/AccountService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -12
  99. package/AccountService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -13
  100. package/AccountService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -11
  101. package/AccountService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -17
  102. package/AccountService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -17
  103. package/AccountService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -9
  104. package/AccountService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -14
  105. package/AccountService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -13
  106. package/AccountService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -9
  107. package/AccountService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -9
  108. package/AccountService/models/Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour.ts +9 -9
  109. package/AccountService/models/Volo_Abp_Identity_IdentitySecurityLogDto.ts +21 -21
  110. package/AccountService/models/Volo_Abp_Identity_IdentityUserDto.ts +35 -35
  111. package/AccountService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -12
  112. package/AccountService/models/Volo_Abp_NameValue.ts +9 -9
  113. package/AccountService/schemas.gen.ts +5333 -5333
  114. package/AccountService/services/AbpApiDefinitionService.ts +34 -34
  115. package/AccountService/services/AbpApplicationConfigurationService.ts +34 -34
  116. package/AccountService/services/AbpApplicationLocalizationService.ts +37 -37
  117. package/AccountService/services/AbpTenantService.ts +58 -58
  118. package/AccountService/services/AccountExternalProviderService.ts +56 -56
  119. package/AccountService/services/AccountService.ts +545 -545
  120. package/AccountService/services/AccountSettingsService.ts +178 -178
  121. package/AccountService/services/DynamicClaimsService.ts +27 -27
  122. package/AccountService/services/LoginService.ts +99 -99
  123. package/AccountService/services/ProfileService.ts +155 -155
  124. package/AccountService/services/UserService.ts +313 -313
  125. package/AccountService/services.gen.ts +1539 -1539
  126. package/AccountService/types.gen.ts +3328 -3328
  127. package/AdministrationService/AdministrationServiceClient.ts +80 -80
  128. package/AdministrationService/core/ApiError.ts +20 -20
  129. package/AdministrationService/core/ApiRequestOptions.ts +12 -12
  130. package/AdministrationService/core/ApiResult.ts +6 -6
  131. package/AdministrationService/core/BaseHttpRequest.ts +9 -9
  132. package/AdministrationService/core/CancelablePromise.ts +125 -125
  133. package/AdministrationService/core/FetchHttpRequest.ts +21 -21
  134. package/AdministrationService/core/OpenAPI.ts +55 -55
  135. package/AdministrationService/core/request.ts +340 -340
  136. package/AdministrationService/index.ts +8 -8
  137. package/AdministrationService/models/System_Net_HttpStatusCode.ts +67 -67
  138. package/AdministrationService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -9
  139. package/AdministrationService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -10
  140. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -8
  141. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -30
  142. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -8
  143. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -8
  144. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -18
  145. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -9
  146. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -9
  147. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -8
  148. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -8
  149. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -17
  150. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -22
  151. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -14
  152. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -8
  153. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -10
  154. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -10
  155. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -9
  156. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -8
  157. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -13
  158. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -8
  159. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -8
  160. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -9
  161. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -19
  162. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -14
  163. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -8
  164. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -12
  165. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -8
  166. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -9
  167. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -10
  168. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -11
  169. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -11
  170. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -9
  171. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -8
  172. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -10
  173. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto.ts +11 -11
  174. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -8
  175. package/AdministrationService/models/Volo_Abp_AuditLogging_AuditLogActionDto.ts +16 -16
  176. package/AdministrationService/models/Volo_Abp_AuditLogging_AuditLogDto.ts +33 -33
  177. package/AdministrationService/models/Volo_Abp_AuditLogging_EntityChangeDto.ts +18 -18
  178. package/AdministrationService/models/Volo_Abp_AuditLogging_EntityChangeWithUsernameDto.ts +10 -10
  179. package/AdministrationService/models/Volo_Abp_AuditLogging_EntityPropertyChangeDto.ts +14 -14
  180. package/AdministrationService/models/Volo_Abp_AuditLogging_GetAverageExecutionDurationPerDayOutput.ts +8 -8
  181. package/AdministrationService/models/Volo_Abp_AuditLogging_GetErrorRateOutput.ts +8 -8
  182. package/AdministrationService/models/Volo_Abp_Auditing_EntityChangeType.ts +9 -9
  183. package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureDto.ts +17 -17
  184. package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureGroupDto.ts +11 -11
  185. package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureProviderDto.ts +9 -9
  186. package/AdministrationService/models/Volo_Abp_FeatureManagement_GetFeatureListResultDto.ts +9 -9
  187. package/AdministrationService/models/Volo_Abp_FeatureManagement_UpdateFeatureDto.ts +9 -9
  188. package/AdministrationService/models/Volo_Abp_FeatureManagement_UpdateFeaturesDto.ts +9 -9
  189. package/AdministrationService/models/Volo_Abp_Gdpr_DownloadTokenResultDto.ts +8 -8
  190. package/AdministrationService/models/Volo_Abp_Gdpr_GdprRequestDto.ts +10 -10
  191. package/AdministrationService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -20
  192. package/AdministrationService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -11
  193. package/AdministrationService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -17
  194. package/AdministrationService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -11
  195. package/AdministrationService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -12
  196. package/AdministrationService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -13
  197. package/AdministrationService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -11
  198. package/AdministrationService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -17
  199. package/AdministrationService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -17
  200. package/AdministrationService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -9
  201. package/AdministrationService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -14
  202. package/AdministrationService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -13
  203. package/AdministrationService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -9
  204. package/AdministrationService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -9
  205. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_CreateLanguageDto.ts +13 -13
  206. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_CultureInfoDto.ts +9 -9
  207. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageDto.ts +18 -18
  208. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageResourceDto.ts +8 -8
  209. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageTextDto.ts +13 -13
  210. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_UpdateLanguageDto.ts +12 -12
  211. package/AdministrationService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -12
  212. package/AdministrationService/models/Volo_Abp_NameValue.ts +9 -9
  213. package/AdministrationService/models/Volo_Abp_PermissionManagement_GetPermissionListResultDto.ts +10 -10
  214. package/AdministrationService/models/Volo_Abp_PermissionManagement_PermissionGrantInfoDto.ts +14 -14
  215. package/AdministrationService/models/Volo_Abp_PermissionManagement_PermissionGroupDto.ts +13 -13
  216. package/AdministrationService/models/Volo_Abp_PermissionManagement_ProviderInfoDto.ts +9 -9
  217. package/AdministrationService/models/Volo_Abp_PermissionManagement_UpdatePermissionDto.ts +9 -9
  218. package/AdministrationService/models/Volo_Abp_PermissionManagement_UpdatePermissionsDto.ts +9 -9
  219. package/AdministrationService/models/Volo_Abp_SettingManagement_EmailSettingsDto.ts +16 -16
  220. package/AdministrationService/models/Volo_Abp_SettingManagement_SendTestEmailInput.ts +11 -11
  221. package/AdministrationService/models/Volo_Abp_SettingManagement_UpdateEmailSettingsDto.ts +16 -16
  222. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_RestoreTemplateContentInput.ts +9 -9
  223. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_TemplateDefinitionDto.ts +13 -13
  224. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_TextTemplateContentDto.ts +10 -10
  225. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_UpdateTemplateContentInput.ts +10 -10
  226. package/AdministrationService/models/Volo_Abp_Validation_StringValues_IStringValueType.ts +11 -11
  227. package/AdministrationService/models/Volo_Abp_Validation_StringValues_IValueValidator.ts +9 -9
  228. package/AdministrationService/schemas.gen.ts +6745 -6745
  229. package/AdministrationService/services/AbpApiDefinitionService.ts +34 -34
  230. package/AdministrationService/services/AbpApplicationConfigurationService.ts +34 -34
  231. package/AdministrationService/services/AbpApplicationLocalizationService.ts +37 -37
  232. package/AdministrationService/services/AbpTenantService.ts +58 -58
  233. package/AdministrationService/services/AuditLogsService.ts +286 -286
  234. package/AdministrationService/services/EmailSettingsService.ts +76 -76
  235. package/AdministrationService/services/FeaturesService.ts +96 -96
  236. package/AdministrationService/services/GdprRequestService.ts +152 -152
  237. package/AdministrationService/services/LanguageTextsService.ts +157 -157
  238. package/AdministrationService/services/LanguagesService.ts +257 -257
  239. package/AdministrationService/services/PermissionsService.ts +69 -69
  240. package/AdministrationService/services/TextTemplateContentsService.ts +85 -85
  241. package/AdministrationService/services/TextTemplateDefinitionsService.ts +69 -69
  242. package/AdministrationService/services/TimeZoneSettingsService.ts +70 -70
  243. package/AdministrationService/services.gen.ts +1451 -1451
  244. package/AdministrationService/types.gen.ts +3007 -3007
  245. package/BackerService/BackerServiceClient.ts +50 -50
  246. package/BackerService/core/ApiError.ts +20 -20
  247. package/BackerService/core/ApiRequestOptions.ts +12 -12
  248. package/BackerService/core/ApiResult.ts +6 -6
  249. package/BackerService/core/BaseHttpRequest.ts +9 -9
  250. package/BackerService/core/CancelablePromise.ts +125 -125
  251. package/BackerService/core/FetchHttpRequest.ts +21 -21
  252. package/BackerService/core/OpenAPI.ts +55 -55
  253. package/BackerService/core/request.ts +340 -340
  254. package/BackerService/index.ts +8 -8
  255. package/BackerService/schemas.gen.ts +12444 -12444
  256. package/BackerService/services.gen.ts +866 -866
  257. package/BackerService/types.gen.ts +2170 -2170
  258. package/CRMService/core/ApiRequestOptions.ts +16 -8
  259. package/CRMService/core/OpenAPI.ts +3 -3
  260. package/CRMService/core/request.ts +14 -5
  261. package/CRMService/index.ts +3 -4
  262. package/CRMService/schemas.gen.ts +52 -0
  263. package/CRMService/sdk.gen.ts +3193 -0
  264. package/CRMService/types.gen.ts +401 -4471
  265. package/ContractService/ContractServiceClient.ts +65 -65
  266. package/ContractService/core/ApiError.ts +20 -20
  267. package/ContractService/core/ApiRequestOptions.ts +12 -12
  268. package/ContractService/core/ApiResult.ts +6 -6
  269. package/ContractService/core/BaseHttpRequest.ts +9 -9
  270. package/ContractService/core/CancelablePromise.ts +125 -125
  271. package/ContractService/core/FetchHttpRequest.ts +21 -21
  272. package/ContractService/core/OpenAPI.ts +55 -55
  273. package/ContractService/core/request.ts +340 -340
  274. package/ContractService/index.ts +8 -8
  275. package/ContractService/schemas.gen.ts +12076 -12076
  276. package/ContractService/services.gen.ts +1882 -1882
  277. package/ContractService/types.gen.ts +4145 -4145
  278. package/ExportValidationService/ExportValidationServiceClient.ts +44 -44
  279. package/ExportValidationService/core/ApiError.ts +20 -20
  280. package/ExportValidationService/core/ApiRequestOptions.ts +12 -12
  281. package/ExportValidationService/core/ApiResult.ts +6 -6
  282. package/ExportValidationService/core/BaseHttpRequest.ts +9 -9
  283. package/ExportValidationService/core/CancelablePromise.ts +125 -125
  284. package/ExportValidationService/core/FetchHttpRequest.ts +21 -21
  285. package/ExportValidationService/core/OpenAPI.ts +55 -55
  286. package/ExportValidationService/core/request.ts +340 -340
  287. package/ExportValidationService/index.ts +8 -8
  288. package/ExportValidationService/schemas.gen.ts +3998 -3998
  289. package/ExportValidationService/services.gen.ts +260 -260
  290. package/ExportValidationService/types.gen.ts +818 -818
  291. package/FinanceService/FinanceServiceClient.ts +47 -47
  292. package/FinanceService/core/ApiError.ts +20 -20
  293. package/FinanceService/core/ApiRequestOptions.ts +12 -12
  294. package/FinanceService/core/ApiResult.ts +6 -6
  295. package/FinanceService/core/BaseHttpRequest.ts +9 -9
  296. package/FinanceService/core/CancelablePromise.ts +125 -125
  297. package/FinanceService/core/FetchHttpRequest.ts +21 -21
  298. package/FinanceService/core/OpenAPI.ts +55 -55
  299. package/FinanceService/core/request.ts +340 -340
  300. package/FinanceService/index.ts +8 -8
  301. package/FinanceService/schemas.gen.ts +5006 -5006
  302. package/FinanceService/services.gen.ts +339 -339
  303. package/FinanceService/types.gen.ts +1128 -1128
  304. package/FundraiserService/FundraiserServiceClient.ts +47 -47
  305. package/FundraiserService/core/ApiError.ts +20 -20
  306. package/FundraiserService/core/ApiRequestOptions.ts +12 -12
  307. package/FundraiserService/core/ApiResult.ts +6 -6
  308. package/FundraiserService/core/BaseHttpRequest.ts +9 -9
  309. package/FundraiserService/core/CancelablePromise.ts +125 -125
  310. package/FundraiserService/core/FetchHttpRequest.ts +21 -21
  311. package/FundraiserService/core/OpenAPI.ts +55 -55
  312. package/FundraiserService/core/request.ts +340 -340
  313. package/FundraiserService/index.ts +8 -8
  314. package/FundraiserService/schemas.gen.ts +11548 -11548
  315. package/FundraiserService/services.gen.ts +627 -627
  316. package/FundraiserService/types.gen.ts +1793 -1793
  317. package/IdentityService/IdentityServiceClient.ts +86 -86
  318. package/IdentityService/core/ApiError.ts +20 -20
  319. package/IdentityService/core/ApiRequestOptions.ts +12 -12
  320. package/IdentityService/core/ApiResult.ts +6 -6
  321. package/IdentityService/core/BaseHttpRequest.ts +9 -9
  322. package/IdentityService/core/CancelablePromise.ts +125 -125
  323. package/IdentityService/core/FetchHttpRequest.ts +21 -21
  324. package/IdentityService/core/OpenAPI.ts +55 -55
  325. package/IdentityService/core/request.ts +340 -340
  326. package/IdentityService/index.ts +8 -8
  327. package/IdentityService/models/Volo_Abp_Account_AccountExternalProviderSettingsDto.ts +9 -9
  328. package/IdentityService/models/Volo_Abp_Account_AccountRecaptchaSettingsDto.ts +14 -14
  329. package/IdentityService/models/Volo_Abp_Account_AccountSettingsDto.ts +9 -9
  330. package/IdentityService/models/Volo_Abp_Account_AccountTwoFactorSettingsDto.ts +11 -11
  331. package/IdentityService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettings.ts +12 -12
  332. package/IdentityService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty.ts +9 -9
  333. package/IdentityService/models/Volo_Abp_Account_UpdateExternalProviderDto.ts +12 -12
  334. package/IdentityService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -9
  335. package/IdentityService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -10
  336. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -8
  337. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -30
  338. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -8
  339. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -8
  340. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -18
  341. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -9
  342. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -9
  343. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -8
  344. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -8
  345. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -17
  346. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -22
  347. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -14
  348. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -8
  349. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -10
  350. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -10
  351. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -9
  352. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -8
  353. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -13
  354. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -8
  355. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -8
  356. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -9
  357. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -19
  358. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -14
  359. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -8
  360. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -12
  361. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -8
  362. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -9
  363. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -10
  364. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -11
  365. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -11
  366. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -9
  367. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -8
  368. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -10
  369. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -8
  370. package/IdentityService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -20
  371. package/IdentityService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -11
  372. package/IdentityService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -17
  373. package/IdentityService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -11
  374. package/IdentityService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -12
  375. package/IdentityService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -13
  376. package/IdentityService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -11
  377. package/IdentityService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -17
  378. package/IdentityService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -17
  379. package/IdentityService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -9
  380. package/IdentityService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -14
  381. package/IdentityService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -13
  382. package/IdentityService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -9
  383. package/IdentityService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -9
  384. package/IdentityService/models/Volo_Abp_Identity_ClaimTypeDto.ts +19 -19
  385. package/IdentityService/models/Volo_Abp_Identity_CreateClaimTypeDto.ts +15 -15
  386. package/IdentityService/models/Volo_Abp_Identity_DownloadTokenResultDto.ts +8 -8
  387. package/IdentityService/models/Volo_Abp_Identity_ExternalLoginProviderDto.ts +9 -9
  388. package/IdentityService/models/Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour.ts +9 -9
  389. package/IdentityService/models/Volo_Abp_Identity_IdentityClaimValueType.ts +10 -10
  390. package/IdentityService/models/Volo_Abp_Identity_IdentityLdapSettingsDto.ts +15 -15
  391. package/IdentityService/models/Volo_Abp_Identity_IdentityLockoutSettingsDto.ts +10 -10
  392. package/IdentityService/models/Volo_Abp_Identity_IdentityOAuthSettingsDto.ts +15 -15
  393. package/IdentityService/models/Volo_Abp_Identity_IdentityPasswordSettingsDto.ts +15 -15
  394. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleClaimDto.ts +10 -10
  395. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleCreateDto.ts +11 -11
  396. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleDto.ts +15 -15
  397. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleLookupDto.ts +9 -9
  398. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleUpdateDto.ts +12 -12
  399. package/IdentityService/models/Volo_Abp_Identity_IdentitySecurityLogDto.ts +21 -21
  400. package/IdentityService/models/Volo_Abp_Identity_IdentitySettingsDto.ts +15 -15
  401. package/IdentityService/models/Volo_Abp_Identity_IdentitySignInSettingsDto.ts +10 -10
  402. package/IdentityService/models/Volo_Abp_Identity_IdentityUserClaimDto.ts +10 -10
  403. package/IdentityService/models/Volo_Abp_Identity_IdentityUserCreateDto.ts +20 -20
  404. package/IdentityService/models/Volo_Abp_Identity_IdentityUserDto.ts +35 -35
  405. package/IdentityService/models/Volo_Abp_Identity_IdentityUserSettingsDto.ts +9 -9
  406. package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdateDto.ts +19 -19
  407. package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdatePasswordInput.ts +8 -8
  408. package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdateRolesDto.ts +8 -8
  409. package/IdentityService/models/Volo_Abp_Identity_ImportExternalUserInput.ts +10 -10
  410. package/IdentityService/models/Volo_Abp_Identity_ImportUsersFromFileOutput.ts +12 -12
  411. package/IdentityService/models/Volo_Abp_Identity_ImportUsersFromFileType.ts +8 -8
  412. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitCreateDto.ts +10 -10
  413. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitDto.ts +21 -21
  414. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitLookupDto.ts +9 -9
  415. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitMoveInput.ts +8 -8
  416. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitRoleDto.ts +11 -11
  417. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitRoleInput.ts +8 -8
  418. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitUpdateDto.ts +10 -10
  419. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitUserInput.ts +8 -8
  420. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitWithDetailsDto.ts +23 -23
  421. package/IdentityService/models/Volo_Abp_Identity_UpdateClaimTypeDto.ts +16 -16
  422. package/IdentityService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -12
  423. package/IdentityService/models/Volo_Abp_NameValue.ts +9 -9
  424. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationDto.ts +29 -29
  425. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationTokenLifetimeDto.ts +13 -13
  426. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_CreateApplicationInput.ts +28 -28
  427. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_UpdateApplicationInput.ts +28 -28
  428. package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_CreateScopeInput.ts +12 -12
  429. package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_ScopeDto.ts +14 -14
  430. package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_UpdateScopeInput.ts +12 -12
  431. package/IdentityService/models/Volo_Abp_Users_UserData.ts +18 -18
  432. package/IdentityService/schemas.gen.ts +6928 -6928
  433. package/IdentityService/services/AbpApiDefinitionService.ts +34 -34
  434. package/IdentityService/services/AbpApplicationConfigurationService.ts +34 -34
  435. package/IdentityService/services/AbpApplicationLocalizationService.ts +37 -37
  436. package/IdentityService/services/AccountSettingsService.ts +178 -178
  437. package/IdentityService/services/ApplicationsService.ts +199 -199
  438. package/IdentityService/services/ClaimTypeService.ts +149 -149
  439. package/IdentityService/services/ExternalLoginService.ts +27 -27
  440. package/IdentityService/services/OrganizationUnitService.ts +539 -539
  441. package/IdentityService/services/RoleService.ts +269 -269
  442. package/IdentityService/services/ScopesService.ts +164 -164
  443. package/IdentityService/services/SecurityLogService.ts +174 -174
  444. package/IdentityService/services/SettingsService.ts +135 -135
  445. package/IdentityService/services/UserIntegrationService.ts +144 -144
  446. package/IdentityService/services/UserLookupService.ts +120 -120
  447. package/IdentityService/services/UserService.ts +937 -937
  448. package/IdentityService/services.gen.ts +3154 -3154
  449. package/IdentityService/types.gen.ts +5874 -5874
  450. package/LocationService/LocationServiceClient.ts +74 -74
  451. package/LocationService/core/ApiError.ts +20 -20
  452. package/LocationService/core/ApiRequestOptions.ts +12 -12
  453. package/LocationService/core/ApiResult.ts +6 -6
  454. package/LocationService/core/BaseHttpRequest.ts +9 -9
  455. package/LocationService/core/CancelablePromise.ts +125 -125
  456. package/LocationService/core/FetchHttpRequest.ts +21 -21
  457. package/LocationService/core/OpenAPI.ts +55 -55
  458. package/LocationService/core/request.ts +340 -340
  459. package/LocationService/index.ts +8 -8
  460. package/LocationService/schemas.gen.ts +6635 -6635
  461. package/LocationService/services.gen.ts +1797 -1797
  462. package/LocationService/types.gen.ts +3738 -3738
  463. package/MerchantService/MerchantServiceClient.ts +77 -77
  464. package/MerchantService/core/ApiError.ts +20 -20
  465. package/MerchantService/core/ApiRequestOptions.ts +12 -12
  466. package/MerchantService/core/ApiResult.ts +6 -6
  467. package/MerchantService/core/BaseHttpRequest.ts +9 -9
  468. package/MerchantService/core/CancelablePromise.ts +125 -125
  469. package/MerchantService/core/FetchHttpRequest.ts +21 -21
  470. package/MerchantService/core/OpenAPI.ts +55 -55
  471. package/MerchantService/core/request.ts +340 -340
  472. package/MerchantService/index.ts +8 -8
  473. package/MerchantService/schemas.gen.ts +14764 -14764
  474. package/MerchantService/services.gen.ts +1602 -1602
  475. package/MerchantService/types.gen.ts +18875 -18875
  476. package/ProjectService/ProjectServiceClient.ts +47 -47
  477. package/ProjectService/core/ApiError.ts +20 -20
  478. package/ProjectService/core/ApiRequestOptions.ts +12 -12
  479. package/ProjectService/core/ApiResult.ts +6 -6
  480. package/ProjectService/core/BaseHttpRequest.ts +9 -9
  481. package/ProjectService/core/CancelablePromise.ts +125 -125
  482. package/ProjectService/core/FetchHttpRequest.ts +21 -21
  483. package/ProjectService/core/OpenAPI.ts +55 -55
  484. package/ProjectService/core/request.ts +340 -340
  485. package/ProjectService/index.ts +8 -8
  486. package/ProjectService/schemas.gen.ts +5147 -5147
  487. package/ProjectService/services.gen.ts +492 -492
  488. package/ProjectService/types.gen.ts +1303 -1303
  489. package/README.md +40 -39
  490. package/RefundService/RefundServiceClient.ts +44 -44
  491. package/RefundService/core/ApiError.ts +20 -20
  492. package/RefundService/core/ApiRequestOptions.ts +12 -12
  493. package/RefundService/core/ApiResult.ts +6 -6
  494. package/RefundService/core/BaseHttpRequest.ts +9 -9
  495. package/RefundService/core/CancelablePromise.ts +125 -125
  496. package/RefundService/core/FetchHttpRequest.ts +21 -21
  497. package/RefundService/core/OpenAPI.ts +55 -55
  498. package/RefundService/core/request.ts +340 -340
  499. package/RefundService/index.ts +8 -8
  500. package/RefundService/schemas.gen.ts +5237 -5237
  501. package/RefundService/services.gen.ts +347 -347
  502. package/RefundService/types.gen.ts +1042 -1042
  503. package/SaasService/SaasServiceClient.ts +65 -65
  504. package/SaasService/core/ApiError.ts +20 -20
  505. package/SaasService/core/ApiRequestOptions.ts +12 -12
  506. package/SaasService/core/ApiResult.ts +6 -6
  507. package/SaasService/core/BaseHttpRequest.ts +9 -9
  508. package/SaasService/core/CancelablePromise.ts +125 -125
  509. package/SaasService/core/FetchHttpRequest.ts +21 -21
  510. package/SaasService/core/OpenAPI.ts +55 -55
  511. package/SaasService/core/request.ts +340 -340
  512. package/SaasService/index.ts +8 -8
  513. package/SaasService/schemas.gen.ts +5345 -5345
  514. package/SaasService/services.gen.ts +1329 -1329
  515. package/SaasService/types.gen.ts +2737 -2737
  516. package/SettingService/SettingServiceClient.ts +59 -59
  517. package/SettingService/core/ApiError.ts +20 -20
  518. package/SettingService/core/ApiRequestOptions.ts +12 -12
  519. package/SettingService/core/ApiResult.ts +6 -6
  520. package/SettingService/core/BaseHttpRequest.ts +9 -9
  521. package/SettingService/core/CancelablePromise.ts +125 -125
  522. package/SettingService/core/FetchHttpRequest.ts +21 -21
  523. package/SettingService/core/OpenAPI.ts +55 -55
  524. package/SettingService/core/request.ts +340 -340
  525. package/SettingService/index.ts +8 -8
  526. package/SettingService/schemas.gen.ts +5223 -5223
  527. package/SettingService/services.gen.ts +758 -758
  528. package/SettingService/types.gen.ts +1800 -1800
  529. package/TagService/TagServiceClient.ts +47 -47
  530. package/TagService/core/ApiError.ts +20 -20
  531. package/TagService/core/ApiRequestOptions.ts +12 -12
  532. package/TagService/core/ApiResult.ts +6 -6
  533. package/TagService/core/BaseHttpRequest.ts +9 -9
  534. package/TagService/core/CancelablePromise.ts +125 -125
  535. package/TagService/core/FetchHttpRequest.ts +21 -21
  536. package/TagService/core/OpenAPI.ts +55 -55
  537. package/TagService/core/request.ts +340 -340
  538. package/TagService/index.ts +8 -8
  539. package/TagService/schemas.gen.ts +5830 -5830
  540. package/TagService/services.gen.ts +556 -556
  541. package/TagService/types.gen.ts +1487 -1487
  542. package/TravellerService/TravellerServiceClient.ts +59 -59
  543. package/TravellerService/core/ApiError.ts +20 -20
  544. package/TravellerService/core/ApiRequestOptions.ts +12 -12
  545. package/TravellerService/core/ApiResult.ts +6 -6
  546. package/TravellerService/core/BaseHttpRequest.ts +9 -9
  547. package/TravellerService/core/CancelablePromise.ts +125 -125
  548. package/TravellerService/core/FetchHttpRequest.ts +21 -21
  549. package/TravellerService/core/OpenAPI.ts +55 -55
  550. package/TravellerService/core/request.ts +340 -340
  551. package/TravellerService/index.ts +8 -8
  552. package/TravellerService/schemas.gen.ts +6396 -6396
  553. package/TravellerService/services.gen.ts +949 -949
  554. package/TravellerService/types.gen.ts +2220 -2220
  555. package/index.mjs +38 -0
  556. package/package.json +37 -41
  557. package/CRMService/CRMServiceClient.ts +0 -77
  558. package/CRMService/core/BaseHttpRequest.ts +0 -10
  559. package/CRMService/core/FetchHttpRequest.ts +0 -22
  560. package/CRMService/services.gen.ts +0 -3267
  561. package/ProjectService.json +0 -2938
  562. package/generator.mjs +0 -221
  563. package/index.ts +0 -2
  564. package/swagger.json +0 -4795
  565. package/upwithcrowdService/core/ApiError.ts +0 -21
  566. package/upwithcrowdService/core/ApiRequestOptions.ts +0 -13
  567. package/upwithcrowdService/core/ApiResult.ts +0 -7
  568. package/upwithcrowdService/core/BaseHttpRequest.ts +0 -10
  569. package/upwithcrowdService/core/CancelablePromise.ts +0 -126
  570. package/upwithcrowdService/core/FetchHttpRequest.ts +0 -22
  571. package/upwithcrowdService/core/OpenAPI.ts +0 -56
  572. package/upwithcrowdService/core/request.ts +0 -341
  573. package/upwithcrowdService/index.ts +0 -9
  574. package/upwithcrowdService/schemas.gen.ts +0 -11974
  575. package/upwithcrowdService/services.gen.ts +0 -6556
  576. package/upwithcrowdService/types.gen.ts +0 -12239
  577. package/upwithcrowdService/upwithcrowdServiceClient.ts +0 -161
@@ -1,1603 +1,1603 @@
1
- // This file is auto-generated by @hey-api/openapi-ts
2
-
3
- import type { CancelablePromise } from './core/CancelablePromise';
4
- import type { BaseHttpRequest } from './core/BaseHttpRequest';
5
- import type { GetApiAbpApiDefinitionData, GetApiAbpApiDefinitionResponse, GetApiAbpApplicationConfigurationData, GetApiAbpApplicationConfigurationResponse, GetApiAbpApplicationLocalizationData, GetApiAbpApplicationLocalizationResponse, GetApiMerchantServiceAddressTypesByIdData, GetApiMerchantServiceAddressTypesByIdResponse, GetApiMerchantServiceAddressTypesData, GetApiMerchantServiceAddressTypesResponse, PutApiMerchantServiceAddressTypesData, PutApiMerchantServiceAddressTypesResponse, DeleteApiMerchantServiceAddressTypesData, DeleteApiMerchantServiceAddressTypesResponse, GetApiMerchantServiceAffiliationTypesByIdData, GetApiMerchantServiceAffiliationTypesByIdResponse, GetApiMerchantServiceAffiliationTypesData, GetApiMerchantServiceAffiliationTypesResponse, PostApiMerchantServiceAffiliationTypesData, PostApiMerchantServiceAffiliationTypesResponse, PutApiMerchantServiceAffiliationTypesData, PutApiMerchantServiceAffiliationTypesResponse, DeleteApiMerchantServiceAffiliationTypesData, DeleteApiMerchantServiceAffiliationTypesResponse, GetApiMerchantServiceContactInformationTypesDetailByIdData, GetApiMerchantServiceContactInformationTypesDetailByIdResponse, GetApiMerchantServiceContactInformationTypesDetailData, GetApiMerchantServiceContactInformationTypesDetailResponse, PutApiMerchantServiceContactInformationTypesData, PutApiMerchantServiceContactInformationTypesResponse, GetApiMerchantServiceEmailCommonDatasByIdData, GetApiMerchantServiceEmailCommonDatasByIdResponse, GetApiMerchantServiceEmailCommonDatasData, GetApiMerchantServiceEmailCommonDatasResponse, PutApiMerchantServiceEmailCommonDatasData, PutApiMerchantServiceEmailCommonDatasResponse, DeleteApiMerchantServiceEmailCommonDatasData, DeleteApiMerchantServiceEmailCommonDatasResponse, GetApiMerchantServiceEntityInformationTypesDetailByIdData, GetApiMerchantServiceEntityInformationTypesDetailByIdResponse, GetApiMerchantServiceEntityInformationTypesDetailData, GetApiMerchantServiceEntityInformationTypesDetailResponse, PostApiMerchantServiceEntityInformationTypesData, PostApiMerchantServiceEntityInformationTypesResponse, PutApiMerchantServiceEntityInformationTypesData, PutApiMerchantServiceEntityInformationTypesResponse, DeleteApiMerchantServiceEntityInformationTypesData, DeleteApiMerchantServiceEntityInformationTypesResponse, GetApiMerchantServiceIndividualsDetailByIdData, GetApiMerchantServiceIndividualsDetailByIdResponse, GetApiMerchantServiceIndividualsDetailData, GetApiMerchantServiceIndividualsDetailResponse, PostApiMerchantServiceIndividualsData, PostApiMerchantServiceIndividualsResponse, PutApiMerchantServiceIndividualsData, PutApiMerchantServiceIndividualsResponse, DeleteApiMerchantServiceIndividualsData, DeleteApiMerchantServiceIndividualsResponse, GetApiMerchantServiceMerchantsDetailByIdData, GetApiMerchantServiceMerchantsDetailByIdResponse, GetApiMerchantServiceMerchantsDetailData, GetApiMerchantServiceMerchantsDetailResponse, PostApiMerchantServiceMerchantsTelephoneData, PostApiMerchantServiceMerchantsTelephoneResponse, PostApiMerchantServiceMerchantsAddressData, PostApiMerchantServiceMerchantsAddressResponse, PostApiMerchantServiceMerchantsEmailData, PostApiMerchantServiceMerchantsEmailResponse, PostApiMerchantServiceMerchantsWithComponentsData, PostApiMerchantServiceMerchantsWithComponentsResponse, PutApiMerchantServiceMerchantsWithComponentsData, PutApiMerchantServiceMerchantsWithComponentsResponse, DeleteApiMerchantServiceMerchantsWithComponentsData, DeleteApiMerchantServiceMerchantsWithComponentsResponse, GetApiMerchantServiceNameCommonDatasByIdData, GetApiMerchantServiceNameCommonDatasByIdResponse, GetApiMerchantServiceNameCommonDatasData, GetApiMerchantServiceNameCommonDatasResponse, PutApiMerchantServiceNameCommonDatasData, PutApiMerchantServiceNameCommonDatasResponse, DeleteApiMerchantServiceNameCommonDatasData, DeleteApiMerchantServiceNameCommonDatasResponse, GetApiMerchantServiceOrganizationsDetailByIdData, GetApiMerchantServiceOrganizationsDetailByIdResponse, GetApiMerchantServiceOrganizationsDetailData, GetApiMerchantServiceOrganizationsDetailResponse, PostApiMerchantServiceOrganizationsData, PostApiMerchantServiceOrganizationsResponse, PutApiMerchantServiceOrganizationsData, PutApiMerchantServiceOrganizationsResponse, DeleteApiMerchantServiceOrganizationsData, DeleteApiMerchantServiceOrganizationsResponse, PostApiMerchantServiceOrganizationsSubOrganizationData, PostApiMerchantServiceOrganizationsSubOrganizationResponse, GetApiMerchantServicePersonalSummariesByIdData, GetApiMerchantServicePersonalSummariesByIdResponse, GetApiMerchantServicePersonalSummariesData, GetApiMerchantServicePersonalSummariesResponse, PostApiMerchantServicePersonalSummariesData, PostApiMerchantServicePersonalSummariesResponse, PutApiMerchantServicePersonalSummariesData, PutApiMerchantServicePersonalSummariesResponse, DeleteApiMerchantServicePersonalSummariesData, DeleteApiMerchantServicePersonalSummariesResponse, GetApiMerchantServiceProductGroupsByIdData, GetApiMerchantServiceProductGroupsByIdResponse, GetApiMerchantServiceProductGroupsData, GetApiMerchantServiceProductGroupsResponse, PostApiMerchantServiceProductGroupsData, PostApiMerchantServiceProductGroupsResponse, PutApiMerchantServiceProductGroupsData, PutApiMerchantServiceProductGroupsResponse, DeleteApiMerchantServiceProductGroupsData, DeleteApiMerchantServiceProductGroupsResponse, GetApiMerchantServiceTelephoneTypesByIdData, GetApiMerchantServiceTelephoneTypesByIdResponse, GetApiMerchantServiceTelephoneTypesData, GetApiMerchantServiceTelephoneTypesResponse, PutApiMerchantServiceTelephoneTypesData, PutApiMerchantServiceTelephoneTypesResponse, DeleteApiMerchantServiceTelephoneTypesData, DeleteApiMerchantServiceTelephoneTypesResponse } from './types.gen';
6
-
7
- export class AbpApiDefinitionService {
8
- constructor(public readonly httpRequest: BaseHttpRequest) { }
9
-
10
- /**
11
- * @param data The data for the request.
12
- * @param data.includeTypes
13
- * @returns unknown Success
14
- * @throws ApiError
15
- */
16
- public getApiAbpApiDefinition(data: GetApiAbpApiDefinitionData = {}): CancelablePromise<GetApiAbpApiDefinitionResponse> {
17
- return this.httpRequest.request({
18
- method: 'GET',
19
- url: '/api/abp/api-definition',
20
- query: {
21
- IncludeTypes: data.includeTypes
22
- },
23
- errors: {
24
- 400: 'Bad Request',
25
- 401: 'Unauthorized',
26
- 403: 'Forbidden',
27
- 404: 'Not Found',
28
- 500: 'Server Error',
29
- 501: 'Server Error'
30
- }
31
- });
32
- }
33
-
34
- }
35
-
36
- export class AbpApplicationConfigurationService {
37
- constructor(public readonly httpRequest: BaseHttpRequest) { }
38
-
39
- /**
40
- * @param data The data for the request.
41
- * @param data.includeLocalizationResources
42
- * @returns unknown Success
43
- * @throws ApiError
44
- */
45
- public getApiAbpApplicationConfiguration(data: GetApiAbpApplicationConfigurationData = {}): CancelablePromise<GetApiAbpApplicationConfigurationResponse> {
46
- return this.httpRequest.request({
47
- method: 'GET',
48
- url: '/api/abp/application-configuration',
49
- query: {
50
- IncludeLocalizationResources: data.includeLocalizationResources
51
- },
52
- errors: {
53
- 400: 'Bad Request',
54
- 401: 'Unauthorized',
55
- 403: 'Forbidden',
56
- 404: 'Not Found',
57
- 500: 'Server Error',
58
- 501: 'Server Error'
59
- }
60
- });
61
- }
62
-
63
- }
64
-
65
- export class AbpApplicationLocalizationService {
66
- constructor(public readonly httpRequest: BaseHttpRequest) { }
67
-
68
- /**
69
- * @param data The data for the request.
70
- * @param data.cultureName
71
- * @param data.onlyDynamics
72
- * @returns unknown Success
73
- * @throws ApiError
74
- */
75
- public getApiAbpApplicationLocalization(data: GetApiAbpApplicationLocalizationData): CancelablePromise<GetApiAbpApplicationLocalizationResponse> {
76
- return this.httpRequest.request({
77
- method: 'GET',
78
- url: '/api/abp/application-localization',
79
- query: {
80
- CultureName: data.cultureName,
81
- OnlyDynamics: data.onlyDynamics
82
- },
83
- errors: {
84
- 400: 'Bad Request',
85
- 401: 'Unauthorized',
86
- 403: 'Forbidden',
87
- 404: 'Not Found',
88
- 500: 'Server Error',
89
- 501: 'Server Error'
90
- }
91
- });
92
- }
93
-
94
- }
95
-
96
- export class AddressTypeService {
97
- constructor(public readonly httpRequest: BaseHttpRequest) { }
98
-
99
- /**
100
- * @param data The data for the request.
101
- * @param data.id
102
- * @returns unknown Success
103
- * @throws ApiError
104
- */
105
- public getApiMerchantServiceAddressTypesById(data: GetApiMerchantServiceAddressTypesByIdData): CancelablePromise<GetApiMerchantServiceAddressTypesByIdResponse> {
106
- return this.httpRequest.request({
107
- method: 'GET',
108
- url: '/api/merchant-service/address-types/{id}',
109
- path: {
110
- id: data.id
111
- },
112
- errors: {
113
- 400: 'Bad Request',
114
- 401: 'Unauthorized',
115
- 403: 'Forbidden',
116
- 404: 'Not Found',
117
- 500: 'Server Error',
118
- 501: 'Server Error'
119
- }
120
- });
121
- }
122
-
123
- /**
124
- * @param data The data for the request.
125
- * @param data.sorting
126
- * @param data.skipCount
127
- * @param data.maxResultCount
128
- * @returns unknown Success
129
- * @throws ApiError
130
- */
131
- public getApiMerchantServiceAddressTypes(data: GetApiMerchantServiceAddressTypesData = {}): CancelablePromise<GetApiMerchantServiceAddressTypesResponse> {
132
- return this.httpRequest.request({
133
- method: 'GET',
134
- url: '/api/merchant-service/address-types',
135
- query: {
136
- Sorting: data.sorting,
137
- SkipCount: data.skipCount,
138
- MaxResultCount: data.maxResultCount
139
- },
140
- errors: {
141
- 400: 'Bad Request',
142
- 401: 'Unauthorized',
143
- 403: 'Forbidden',
144
- 404: 'Not Found',
145
- 500: 'Server Error',
146
- 501: 'Server Error'
147
- }
148
- });
149
- }
150
-
151
- /**
152
- * @param data The data for the request.
153
- * @param data.requestBody
154
- * @returns unknown Success
155
- * @throws ApiError
156
- */
157
- public putApiMerchantServiceAddressTypes(data: PutApiMerchantServiceAddressTypesData = {}): CancelablePromise<PutApiMerchantServiceAddressTypesResponse> {
158
- return this.httpRequest.request({
159
- method: 'PUT',
160
- url: '/api/merchant-service/address-types',
161
- body: data.requestBody,
162
- mediaType: 'application/json',
163
- errors: {
164
- 400: 'Bad Request',
165
- 401: 'Unauthorized',
166
- 403: 'Forbidden',
167
- 404: 'Not Found',
168
- 500: 'Server Error',
169
- 501: 'Server Error'
170
- }
171
- });
172
- }
173
-
174
- /**
175
- * @param data The data for the request.
176
- * @param data.id
177
- * @returns unknown Success
178
- * @throws ApiError
179
- */
180
- public deleteApiMerchantServiceAddressTypes(data: DeleteApiMerchantServiceAddressTypesData): CancelablePromise<DeleteApiMerchantServiceAddressTypesResponse> {
181
- return this.httpRequest.request({
182
- method: 'DELETE',
183
- url: '/api/merchant-service/address-types',
184
- query: {
185
- id: data.id
186
- },
187
- errors: {
188
- 400: 'Bad Request',
189
- 401: 'Unauthorized',
190
- 403: 'Forbidden',
191
- 404: 'Not Found',
192
- 500: 'Server Error',
193
- 501: 'Server Error'
194
- }
195
- });
196
- }
197
-
198
- }
199
-
200
- export class AffiliationTypeService {
201
- constructor(public readonly httpRequest: BaseHttpRequest) { }
202
-
203
- /**
204
- * @param data The data for the request.
205
- * @param data.id
206
- * @returns unknown Success
207
- * @throws ApiError
208
- */
209
- public getApiMerchantServiceAffiliationTypesById(data: GetApiMerchantServiceAffiliationTypesByIdData): CancelablePromise<GetApiMerchantServiceAffiliationTypesByIdResponse> {
210
- return this.httpRequest.request({
211
- method: 'GET',
212
- url: '/api/merchant-service/affiliation-types/{id}',
213
- path: {
214
- id: data.id
215
- },
216
- errors: {
217
- 400: 'Bad Request',
218
- 401: 'Unauthorized',
219
- 403: 'Forbidden',
220
- 404: 'Not Found',
221
- 500: 'Server Error',
222
- 501: 'Server Error'
223
- }
224
- });
225
- }
226
-
227
- /**
228
- * @param data The data for the request.
229
- * @param data.sorting
230
- * @param data.skipCount
231
- * @param data.maxResultCount
232
- * @returns unknown Success
233
- * @throws ApiError
234
- */
235
- public getApiMerchantServiceAffiliationTypes(data: GetApiMerchantServiceAffiliationTypesData = {}): CancelablePromise<GetApiMerchantServiceAffiliationTypesResponse> {
236
- return this.httpRequest.request({
237
- method: 'GET',
238
- url: '/api/merchant-service/affiliation-types',
239
- query: {
240
- Sorting: data.sorting,
241
- SkipCount: data.skipCount,
242
- MaxResultCount: data.maxResultCount
243
- },
244
- errors: {
245
- 400: 'Bad Request',
246
- 401: 'Unauthorized',
247
- 403: 'Forbidden',
248
- 404: 'Not Found',
249
- 500: 'Server Error',
250
- 501: 'Server Error'
251
- }
252
- });
253
- }
254
-
255
- /**
256
- * @param data The data for the request.
257
- * @param data.merchantId
258
- * @param data.requestBody
259
- * @returns unknown Success
260
- * @throws ApiError
261
- */
262
- public postApiMerchantServiceAffiliationTypes(data: PostApiMerchantServiceAffiliationTypesData): CancelablePromise<PostApiMerchantServiceAffiliationTypesResponse> {
263
- return this.httpRequest.request({
264
- method: 'POST',
265
- url: '/api/merchant-service/affiliation-types',
266
- query: {
267
- merchantId: data.merchantId
268
- },
269
- body: data.requestBody,
270
- mediaType: 'application/json',
271
- errors: {
272
- 400: 'Bad Request',
273
- 401: 'Unauthorized',
274
- 403: 'Forbidden',
275
- 404: 'Not Found',
276
- 500: 'Server Error',
277
- 501: 'Server Error'
278
- }
279
- });
280
- }
281
-
282
- /**
283
- * @param data The data for the request.
284
- * @param data.requestBody
285
- * @returns unknown Success
286
- * @throws ApiError
287
- */
288
- public putApiMerchantServiceAffiliationTypes(data: PutApiMerchantServiceAffiliationTypesData = {}): CancelablePromise<PutApiMerchantServiceAffiliationTypesResponse> {
289
- return this.httpRequest.request({
290
- method: 'PUT',
291
- url: '/api/merchant-service/affiliation-types',
292
- body: data.requestBody,
293
- mediaType: 'application/json',
294
- errors: {
295
- 400: 'Bad Request',
296
- 401: 'Unauthorized',
297
- 403: 'Forbidden',
298
- 404: 'Not Found',
299
- 500: 'Server Error',
300
- 501: 'Server Error'
301
- }
302
- });
303
- }
304
-
305
- /**
306
- * @param data The data for the request.
307
- * @param data.id
308
- * @returns unknown Success
309
- * @throws ApiError
310
- */
311
- public deleteApiMerchantServiceAffiliationTypes(data: DeleteApiMerchantServiceAffiliationTypesData): CancelablePromise<DeleteApiMerchantServiceAffiliationTypesResponse> {
312
- return this.httpRequest.request({
313
- method: 'DELETE',
314
- url: '/api/merchant-service/affiliation-types',
315
- query: {
316
- id: data.id
317
- },
318
- errors: {
319
- 400: 'Bad Request',
320
- 401: 'Unauthorized',
321
- 403: 'Forbidden',
322
- 404: 'Not Found',
323
- 500: 'Server Error',
324
- 501: 'Server Error'
325
- }
326
- });
327
- }
328
-
329
- }
330
-
331
- export class ContactInformationTypeService {
332
- constructor(public readonly httpRequest: BaseHttpRequest) { }
333
-
334
- /**
335
- * @param data The data for the request.
336
- * @param data.id
337
- * @returns unknown Success
338
- * @throws ApiError
339
- */
340
- public getApiMerchantServiceContactInformationTypesDetailById(data: GetApiMerchantServiceContactInformationTypesDetailByIdData): CancelablePromise<GetApiMerchantServiceContactInformationTypesDetailByIdResponse> {
341
- return this.httpRequest.request({
342
- method: 'GET',
343
- url: '/api/merchant-service/contact-information-types/detail/{id}',
344
- path: {
345
- id: data.id
346
- },
347
- errors: {
348
- 400: 'Bad Request',
349
- 401: 'Unauthorized',
350
- 403: 'Forbidden',
351
- 404: 'Not Found',
352
- 500: 'Server Error',
353
- 501: 'Server Error'
354
- }
355
- });
356
- }
357
-
358
- /**
359
- * @param data The data for the request.
360
- * @param data.skipCount
361
- * @param data.maxResultCount
362
- * @returns unknown Success
363
- * @throws ApiError
364
- */
365
- public getApiMerchantServiceContactInformationTypesDetail(data: GetApiMerchantServiceContactInformationTypesDetailData = {}): CancelablePromise<GetApiMerchantServiceContactInformationTypesDetailResponse> {
366
- return this.httpRequest.request({
367
- method: 'GET',
368
- url: '/api/merchant-service/contact-information-types/detail',
369
- query: {
370
- SkipCount: data.skipCount,
371
- MaxResultCount: data.maxResultCount
372
- },
373
- errors: {
374
- 400: 'Bad Request',
375
- 401: 'Unauthorized',
376
- 403: 'Forbidden',
377
- 404: 'Not Found',
378
- 500: 'Server Error',
379
- 501: 'Server Error'
380
- }
381
- });
382
- }
383
-
384
- /**
385
- * @param data The data for the request.
386
- * @param data.requestBody
387
- * @returns unknown Success
388
- * @throws ApiError
389
- */
390
- public putApiMerchantServiceContactInformationTypes(data: PutApiMerchantServiceContactInformationTypesData = {}): CancelablePromise<PutApiMerchantServiceContactInformationTypesResponse> {
391
- return this.httpRequest.request({
392
- method: 'PUT',
393
- url: '/api/merchant-service/contact-information-types',
394
- body: data.requestBody,
395
- mediaType: 'application/json',
396
- errors: {
397
- 400: 'Bad Request',
398
- 401: 'Unauthorized',
399
- 403: 'Forbidden',
400
- 404: 'Not Found',
401
- 500: 'Server Error',
402
- 501: 'Server Error'
403
- }
404
- });
405
- }
406
-
407
- }
408
-
409
- export class EmailCommonDataService {
410
- constructor(public readonly httpRequest: BaseHttpRequest) { }
411
-
412
- /**
413
- * @param data The data for the request.
414
- * @param data.id
415
- * @returns unknown Success
416
- * @throws ApiError
417
- */
418
- public getApiMerchantServiceEmailCommonDatasById(data: GetApiMerchantServiceEmailCommonDatasByIdData): CancelablePromise<GetApiMerchantServiceEmailCommonDatasByIdResponse> {
419
- return this.httpRequest.request({
420
- method: 'GET',
421
- url: '/api/merchant-service/email-common-datas/{id}',
422
- path: {
423
- id: data.id
424
- },
425
- errors: {
426
- 400: 'Bad Request',
427
- 401: 'Unauthorized',
428
- 403: 'Forbidden',
429
- 404: 'Not Found',
430
- 500: 'Server Error',
431
- 501: 'Server Error'
432
- }
433
- });
434
- }
435
-
436
- /**
437
- * @param data The data for the request.
438
- * @param data.sorting
439
- * @param data.skipCount
440
- * @param data.maxResultCount
441
- * @returns unknown Success
442
- * @throws ApiError
443
- */
444
- public getApiMerchantServiceEmailCommonDatas(data: GetApiMerchantServiceEmailCommonDatasData = {}): CancelablePromise<GetApiMerchantServiceEmailCommonDatasResponse> {
445
- return this.httpRequest.request({
446
- method: 'GET',
447
- url: '/api/merchant-service/email-common-datas',
448
- query: {
449
- Sorting: data.sorting,
450
- SkipCount: data.skipCount,
451
- MaxResultCount: data.maxResultCount
452
- },
453
- errors: {
454
- 400: 'Bad Request',
455
- 401: 'Unauthorized',
456
- 403: 'Forbidden',
457
- 404: 'Not Found',
458
- 500: 'Server Error',
459
- 501: 'Server Error'
460
- }
461
- });
462
- }
463
-
464
- /**
465
- * @param data The data for the request.
466
- * @param data.requestBody
467
- * @returns unknown Success
468
- * @throws ApiError
469
- */
470
- public putApiMerchantServiceEmailCommonDatas(data: PutApiMerchantServiceEmailCommonDatasData = {}): CancelablePromise<PutApiMerchantServiceEmailCommonDatasResponse> {
471
- return this.httpRequest.request({
472
- method: 'PUT',
473
- url: '/api/merchant-service/email-common-datas',
474
- body: data.requestBody,
475
- mediaType: 'application/json',
476
- errors: {
477
- 400: 'Bad Request',
478
- 401: 'Unauthorized',
479
- 403: 'Forbidden',
480
- 404: 'Not Found',
481
- 500: 'Server Error',
482
- 501: 'Server Error'
483
- }
484
- });
485
- }
486
-
487
- /**
488
- * @param data The data for the request.
489
- * @param data.id
490
- * @returns unknown Success
491
- * @throws ApiError
492
- */
493
- public deleteApiMerchantServiceEmailCommonDatas(data: DeleteApiMerchantServiceEmailCommonDatasData): CancelablePromise<DeleteApiMerchantServiceEmailCommonDatasResponse> {
494
- return this.httpRequest.request({
495
- method: 'DELETE',
496
- url: '/api/merchant-service/email-common-datas',
497
- query: {
498
- id: data.id
499
- },
500
- errors: {
501
- 400: 'Bad Request',
502
- 401: 'Unauthorized',
503
- 403: 'Forbidden',
504
- 404: 'Not Found',
505
- 500: 'Server Error',
506
- 501: 'Server Error'
507
- }
508
- });
509
- }
510
-
511
- }
512
-
513
- export class EntityInformationTypeService {
514
- constructor(public readonly httpRequest: BaseHttpRequest) { }
515
-
516
- /**
517
- * @param data The data for the request.
518
- * @param data.id
519
- * @returns unknown Success
520
- * @throws ApiError
521
- */
522
- public getApiMerchantServiceEntityInformationTypesDetailById(data: GetApiMerchantServiceEntityInformationTypesDetailByIdData): CancelablePromise<GetApiMerchantServiceEntityInformationTypesDetailByIdResponse> {
523
- return this.httpRequest.request({
524
- method: 'GET',
525
- url: '/api/merchant-service/entity-information-types/detail/{id}',
526
- path: {
527
- id: data.id
528
- },
529
- errors: {
530
- 400: 'Bad Request',
531
- 401: 'Unauthorized',
532
- 403: 'Forbidden',
533
- 404: 'Not Found',
534
- 500: 'Server Error',
535
- 501: 'Server Error'
536
- }
537
- });
538
- }
539
-
540
- /**
541
- * @param data The data for the request.
542
- * @param data.skipCount
543
- * @param data.maxResultCount
544
- * @returns unknown Success
545
- * @throws ApiError
546
- */
547
- public getApiMerchantServiceEntityInformationTypesDetail(data: GetApiMerchantServiceEntityInformationTypesDetailData = {}): CancelablePromise<GetApiMerchantServiceEntityInformationTypesDetailResponse> {
548
- return this.httpRequest.request({
549
- method: 'GET',
550
- url: '/api/merchant-service/entity-information-types/detail',
551
- query: {
552
- SkipCount: data.skipCount,
553
- MaxResultCount: data.maxResultCount
554
- },
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.merchantId
569
- * @param data.requestBody
570
- * @returns unknown Success
571
- * @throws ApiError
572
- */
573
- public postApiMerchantServiceEntityInformationTypes(data: PostApiMerchantServiceEntityInformationTypesData): CancelablePromise<PostApiMerchantServiceEntityInformationTypesResponse> {
574
- return this.httpRequest.request({
575
- method: 'POST',
576
- url: '/api/merchant-service/entity-information-types',
577
- query: {
578
- merchantId: data.merchantId
579
- },
580
- body: data.requestBody,
581
- mediaType: 'application/json',
582
- errors: {
583
- 400: 'Bad Request',
584
- 401: 'Unauthorized',
585
- 403: 'Forbidden',
586
- 404: 'Not Found',
587
- 500: 'Server Error',
588
- 501: 'Server Error'
589
- }
590
- });
591
- }
592
-
593
- /**
594
- * @param data The data for the request.
595
- * @param data.requestBody
596
- * @returns unknown Success
597
- * @throws ApiError
598
- */
599
- public putApiMerchantServiceEntityInformationTypes(data: PutApiMerchantServiceEntityInformationTypesData = {}): CancelablePromise<PutApiMerchantServiceEntityInformationTypesResponse> {
600
- return this.httpRequest.request({
601
- method: 'PUT',
602
- url: '/api/merchant-service/entity-information-types',
603
- body: data.requestBody,
604
- mediaType: 'application/json',
605
- errors: {
606
- 400: 'Bad Request',
607
- 401: 'Unauthorized',
608
- 403: 'Forbidden',
609
- 404: 'Not Found',
610
- 500: 'Server Error',
611
- 501: 'Server Error'
612
- }
613
- });
614
- }
615
-
616
- /**
617
- * @param data The data for the request.
618
- * @param data.id
619
- * @returns unknown Success
620
- * @throws ApiError
621
- */
622
- public deleteApiMerchantServiceEntityInformationTypes(data: DeleteApiMerchantServiceEntityInformationTypesData): CancelablePromise<DeleteApiMerchantServiceEntityInformationTypesResponse> {
623
- return this.httpRequest.request({
624
- method: 'DELETE',
625
- url: '/api/merchant-service/entity-information-types',
626
- query: {
627
- id: data.id
628
- },
629
- errors: {
630
- 400: 'Bad Request',
631
- 401: 'Unauthorized',
632
- 403: 'Forbidden',
633
- 404: 'Not Found',
634
- 500: 'Server Error',
635
- 501: 'Server Error'
636
- }
637
- });
638
- }
639
-
640
- }
641
-
642
- export class IndividualService {
643
- constructor(public readonly httpRequest: BaseHttpRequest) { }
644
-
645
- /**
646
- * @param data The data for the request.
647
- * @param data.id
648
- * @returns unknown Success
649
- * @throws ApiError
650
- */
651
- public getApiMerchantServiceIndividualsDetailById(data: GetApiMerchantServiceIndividualsDetailByIdData): CancelablePromise<GetApiMerchantServiceIndividualsDetailByIdResponse> {
652
- return this.httpRequest.request({
653
- method: 'GET',
654
- url: '/api/merchant-service/individuals/detail/{id}',
655
- path: {
656
- id: data.id
657
- },
658
- errors: {
659
- 400: 'Bad Request',
660
- 401: 'Unauthorized',
661
- 403: 'Forbidden',
662
- 404: 'Not Found',
663
- 500: 'Server Error',
664
- 501: 'Server Error'
665
- }
666
- });
667
- }
668
-
669
- /**
670
- * @param data The data for the request.
671
- * @param data.skipCount
672
- * @param data.maxResultCount
673
- * @returns unknown Success
674
- * @throws ApiError
675
- */
676
- public getApiMerchantServiceIndividualsDetail(data: GetApiMerchantServiceIndividualsDetailData = {}): CancelablePromise<GetApiMerchantServiceIndividualsDetailResponse> {
677
- return this.httpRequest.request({
678
- method: 'GET',
679
- url: '/api/merchant-service/individuals/detail',
680
- query: {
681
- SkipCount: data.skipCount,
682
- MaxResultCount: data.maxResultCount
683
- },
684
- errors: {
685
- 400: 'Bad Request',
686
- 401: 'Unauthorized',
687
- 403: 'Forbidden',
688
- 404: 'Not Found',
689
- 500: 'Server Error',
690
- 501: 'Server Error'
691
- }
692
- });
693
- }
694
-
695
- /**
696
- * @param data The data for the request.
697
- * @param data.entityInformationTypeId
698
- * @param data.requestBody
699
- * @returns unknown Success
700
- * @throws ApiError
701
- */
702
- public postApiMerchantServiceIndividuals(data: PostApiMerchantServiceIndividualsData): CancelablePromise<PostApiMerchantServiceIndividualsResponse> {
703
- return this.httpRequest.request({
704
- method: 'POST',
705
- url: '/api/merchant-service/individuals',
706
- query: {
707
- entityInformationTypeId: data.entityInformationTypeId
708
- },
709
- body: data.requestBody,
710
- mediaType: 'application/json',
711
- errors: {
712
- 400: 'Bad Request',
713
- 401: 'Unauthorized',
714
- 403: 'Forbidden',
715
- 404: 'Not Found',
716
- 500: 'Server Error',
717
- 501: 'Server Error'
718
- }
719
- });
720
- }
721
-
722
- /**
723
- * @param data The data for the request.
724
- * @param data.requestBody
725
- * @returns unknown Success
726
- * @throws ApiError
727
- */
728
- public putApiMerchantServiceIndividuals(data: PutApiMerchantServiceIndividualsData = {}): CancelablePromise<PutApiMerchantServiceIndividualsResponse> {
729
- return this.httpRequest.request({
730
- method: 'PUT',
731
- url: '/api/merchant-service/individuals',
732
- body: data.requestBody,
733
- mediaType: 'application/json',
734
- errors: {
735
- 400: 'Bad Request',
736
- 401: 'Unauthorized',
737
- 403: 'Forbidden',
738
- 404: 'Not Found',
739
- 500: 'Server Error',
740
- 501: 'Server Error'
741
- }
742
- });
743
- }
744
-
745
- /**
746
- * @param data The data for the request.
747
- * @param data.id
748
- * @returns unknown Success
749
- * @throws ApiError
750
- */
751
- public deleteApiMerchantServiceIndividuals(data: DeleteApiMerchantServiceIndividualsData): CancelablePromise<DeleteApiMerchantServiceIndividualsResponse> {
752
- return this.httpRequest.request({
753
- method: 'DELETE',
754
- url: '/api/merchant-service/individuals',
755
- query: {
756
- id: data.id
757
- },
758
- errors: {
759
- 400: 'Bad Request',
760
- 401: 'Unauthorized',
761
- 403: 'Forbidden',
762
- 404: 'Not Found',
763
- 500: 'Server Error',
764
- 501: 'Server Error'
765
- }
766
- });
767
- }
768
-
769
- }
770
-
771
- export class MerchantService {
772
- constructor(public readonly httpRequest: BaseHttpRequest) { }
773
-
774
- /**
775
- * @param data The data for the request.
776
- * @param data.id
777
- * @returns unknown Success
778
- * @throws ApiError
779
- */
780
- public getApiMerchantServiceMerchantsDetailById(data: GetApiMerchantServiceMerchantsDetailByIdData): CancelablePromise<GetApiMerchantServiceMerchantsDetailByIdResponse> {
781
- return this.httpRequest.request({
782
- method: 'GET',
783
- url: '/api/merchant-service/merchants/detail/{id}',
784
- path: {
785
- id: data.id
786
- },
787
- errors: {
788
- 400: 'Bad Request',
789
- 401: 'Unauthorized',
790
- 403: 'Forbidden',
791
- 404: 'Not Found',
792
- 500: 'Server Error',
793
- 501: 'Server Error'
794
- }
795
- });
796
- }
797
-
798
- /**
799
- * @param data The data for the request.
800
- * @param data.skipCount
801
- * @param data.maxResultCount
802
- * @returns unknown Success
803
- * @throws ApiError
804
- */
805
- public getApiMerchantServiceMerchantsDetail(data: GetApiMerchantServiceMerchantsDetailData = {}): CancelablePromise<GetApiMerchantServiceMerchantsDetailResponse> {
806
- return this.httpRequest.request({
807
- method: 'GET',
808
- url: '/api/merchant-service/merchants/detail',
809
- query: {
810
- SkipCount: data.skipCount,
811
- MaxResultCount: data.maxResultCount
812
- },
813
- errors: {
814
- 400: 'Bad Request',
815
- 401: 'Unauthorized',
816
- 403: 'Forbidden',
817
- 404: 'Not Found',
818
- 500: 'Server Error',
819
- 501: 'Server Error'
820
- }
821
- });
822
- }
823
-
824
- /**
825
- * @param data The data for the request.
826
- * @param data.id
827
- * @param data.requestBody
828
- * @returns unknown Success
829
- * @throws ApiError
830
- */
831
- public postApiMerchantServiceMerchantsTelephone(data: PostApiMerchantServiceMerchantsTelephoneData): CancelablePromise<PostApiMerchantServiceMerchantsTelephoneResponse> {
832
- return this.httpRequest.request({
833
- method: 'POST',
834
- url: '/api/merchant-service/merchants/telephone',
835
- query: {
836
- id: data.id
837
- },
838
- body: data.requestBody,
839
- mediaType: 'application/json',
840
- errors: {
841
- 400: 'Bad Request',
842
- 401: 'Unauthorized',
843
- 403: 'Forbidden',
844
- 404: 'Not Found',
845
- 500: 'Server Error',
846
- 501: 'Server Error'
847
- }
848
- });
849
- }
850
-
851
- /**
852
- * @param data The data for the request.
853
- * @param data.id
854
- * @param data.requestBody
855
- * @returns unknown Success
856
- * @throws ApiError
857
- */
858
- public postApiMerchantServiceMerchantsAddress(data: PostApiMerchantServiceMerchantsAddressData): CancelablePromise<PostApiMerchantServiceMerchantsAddressResponse> {
859
- return this.httpRequest.request({
860
- method: 'POST',
861
- url: '/api/merchant-service/merchants/address',
862
- query: {
863
- id: data.id
864
- },
865
- body: data.requestBody,
866
- mediaType: 'application/json',
867
- errors: {
868
- 400: 'Bad Request',
869
- 401: 'Unauthorized',
870
- 403: 'Forbidden',
871
- 404: 'Not Found',
872
- 500: 'Server Error',
873
- 501: 'Server Error'
874
- }
875
- });
876
- }
877
-
878
- /**
879
- * @param data The data for the request.
880
- * @param data.id
881
- * @param data.requestBody
882
- * @returns unknown Success
883
- * @throws ApiError
884
- */
885
- public postApiMerchantServiceMerchantsEmail(data: PostApiMerchantServiceMerchantsEmailData): CancelablePromise<PostApiMerchantServiceMerchantsEmailResponse> {
886
- return this.httpRequest.request({
887
- method: 'POST',
888
- url: '/api/merchant-service/merchants/email',
889
- query: {
890
- id: data.id
891
- },
892
- body: data.requestBody,
893
- mediaType: 'application/json',
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.requestBody
908
- * @returns unknown Success
909
- * @throws ApiError
910
- */
911
- public postApiMerchantServiceMerchantsWithComponents(data: PostApiMerchantServiceMerchantsWithComponentsData = {}): CancelablePromise<PostApiMerchantServiceMerchantsWithComponentsResponse> {
912
- return this.httpRequest.request({
913
- method: 'POST',
914
- url: '/api/merchant-service/merchants/with-components',
915
- body: data.requestBody,
916
- mediaType: 'application/json',
917
- errors: {
918
- 400: 'Bad Request',
919
- 401: 'Unauthorized',
920
- 403: 'Forbidden',
921
- 404: 'Not Found',
922
- 500: 'Server Error',
923
- 501: 'Server Error'
924
- }
925
- });
926
- }
927
-
928
- /**
929
- * @param data The data for the request.
930
- * @param data.requestBody
931
- * @returns unknown Success
932
- * @throws ApiError
933
- */
934
- public putApiMerchantServiceMerchantsWithComponents(data: PutApiMerchantServiceMerchantsWithComponentsData = {}): CancelablePromise<PutApiMerchantServiceMerchantsWithComponentsResponse> {
935
- return this.httpRequest.request({
936
- method: 'PUT',
937
- url: '/api/merchant-service/merchants/with-components',
938
- body: data.requestBody,
939
- mediaType: 'application/json',
940
- errors: {
941
- 400: 'Bad Request',
942
- 401: 'Unauthorized',
943
- 403: 'Forbidden',
944
- 404: 'Not Found',
945
- 500: 'Server Error',
946
- 501: 'Server Error'
947
- }
948
- });
949
- }
950
-
951
- /**
952
- * @param data The data for the request.
953
- * @param data.id
954
- * @returns unknown Success
955
- * @throws ApiError
956
- */
957
- public deleteApiMerchantServiceMerchantsWithComponents(data: DeleteApiMerchantServiceMerchantsWithComponentsData): CancelablePromise<DeleteApiMerchantServiceMerchantsWithComponentsResponse> {
958
- return this.httpRequest.request({
959
- method: 'DELETE',
960
- url: '/api/merchant-service/merchants/with-components',
961
- query: {
962
- id: data.id
963
- },
964
- errors: {
965
- 400: 'Bad Request',
966
- 401: 'Unauthorized',
967
- 403: 'Forbidden',
968
- 404: 'Not Found',
969
- 500: 'Server Error',
970
- 501: 'Server Error'
971
- }
972
- });
973
- }
974
-
975
- }
976
-
977
- export class NameCommonDataService {
978
- constructor(public readonly httpRequest: BaseHttpRequest) { }
979
-
980
- /**
981
- * @param data The data for the request.
982
- * @param data.id
983
- * @returns unknown Success
984
- * @throws ApiError
985
- */
986
- public getApiMerchantServiceNameCommonDatasById(data: GetApiMerchantServiceNameCommonDatasByIdData): CancelablePromise<GetApiMerchantServiceNameCommonDatasByIdResponse> {
987
- return this.httpRequest.request({
988
- method: 'GET',
989
- url: '/api/merchant-service/name-common-datas/{id}',
990
- path: {
991
- id: data.id
992
- },
993
- errors: {
994
- 400: 'Bad Request',
995
- 401: 'Unauthorized',
996
- 403: 'Forbidden',
997
- 404: 'Not Found',
998
- 500: 'Server Error',
999
- 501: 'Server Error'
1000
- }
1001
- });
1002
- }
1003
-
1004
- /**
1005
- * @param data The data for the request.
1006
- * @param data.sorting
1007
- * @param data.skipCount
1008
- * @param data.maxResultCount
1009
- * @returns unknown Success
1010
- * @throws ApiError
1011
- */
1012
- public getApiMerchantServiceNameCommonDatas(data: GetApiMerchantServiceNameCommonDatasData = {}): CancelablePromise<GetApiMerchantServiceNameCommonDatasResponse> {
1013
- return this.httpRequest.request({
1014
- method: 'GET',
1015
- url: '/api/merchant-service/name-common-datas',
1016
- query: {
1017
- Sorting: data.sorting,
1018
- SkipCount: data.skipCount,
1019
- MaxResultCount: data.maxResultCount
1020
- },
1021
- errors: {
1022
- 400: 'Bad Request',
1023
- 401: 'Unauthorized',
1024
- 403: 'Forbidden',
1025
- 404: 'Not Found',
1026
- 500: 'Server Error',
1027
- 501: 'Server Error'
1028
- }
1029
- });
1030
- }
1031
-
1032
- /**
1033
- * @param data The data for the request.
1034
- * @param data.requestBody
1035
- * @returns unknown Success
1036
- * @throws ApiError
1037
- */
1038
- public putApiMerchantServiceNameCommonDatas(data: PutApiMerchantServiceNameCommonDatasData = {}): CancelablePromise<PutApiMerchantServiceNameCommonDatasResponse> {
1039
- return this.httpRequest.request({
1040
- method: 'PUT',
1041
- url: '/api/merchant-service/name-common-datas',
1042
- body: data.requestBody,
1043
- mediaType: 'application/json',
1044
- errors: {
1045
- 400: 'Bad Request',
1046
- 401: 'Unauthorized',
1047
- 403: 'Forbidden',
1048
- 404: 'Not Found',
1049
- 500: 'Server Error',
1050
- 501: 'Server Error'
1051
- }
1052
- });
1053
- }
1054
-
1055
- /**
1056
- * @param data The data for the request.
1057
- * @param data.id
1058
- * @returns unknown Success
1059
- * @throws ApiError
1060
- */
1061
- public deleteApiMerchantServiceNameCommonDatas(data: DeleteApiMerchantServiceNameCommonDatasData): CancelablePromise<DeleteApiMerchantServiceNameCommonDatasResponse> {
1062
- return this.httpRequest.request({
1063
- method: 'DELETE',
1064
- url: '/api/merchant-service/name-common-datas',
1065
- query: {
1066
- id: data.id
1067
- },
1068
- errors: {
1069
- 400: 'Bad Request',
1070
- 401: 'Unauthorized',
1071
- 403: 'Forbidden',
1072
- 404: 'Not Found',
1073
- 500: 'Server Error',
1074
- 501: 'Server Error'
1075
- }
1076
- });
1077
- }
1078
-
1079
- }
1080
-
1081
- export class OrganizationService {
1082
- constructor(public readonly httpRequest: BaseHttpRequest) { }
1083
-
1084
- /**
1085
- * @param data The data for the request.
1086
- * @param data.id
1087
- * @returns unknown Success
1088
- * @throws ApiError
1089
- */
1090
- public getApiMerchantServiceOrganizationsDetailById(data: GetApiMerchantServiceOrganizationsDetailByIdData): CancelablePromise<GetApiMerchantServiceOrganizationsDetailByIdResponse> {
1091
- return this.httpRequest.request({
1092
- method: 'GET',
1093
- url: '/api/merchant-service/organizations/detail/{id}',
1094
- path: {
1095
- id: data.id
1096
- },
1097
- errors: {
1098
- 400: 'Bad Request',
1099
- 401: 'Unauthorized',
1100
- 403: 'Forbidden',
1101
- 404: 'Not Found',
1102
- 500: 'Server Error',
1103
- 501: 'Server Error'
1104
- }
1105
- });
1106
- }
1107
-
1108
- /**
1109
- * @param data The data for the request.
1110
- * @param data.skipCount
1111
- * @param data.maxResultCount
1112
- * @returns unknown Success
1113
- * @throws ApiError
1114
- */
1115
- public getApiMerchantServiceOrganizationsDetail(data: GetApiMerchantServiceOrganizationsDetailData = {}): CancelablePromise<GetApiMerchantServiceOrganizationsDetailResponse> {
1116
- return this.httpRequest.request({
1117
- method: 'GET',
1118
- url: '/api/merchant-service/organizations/detail',
1119
- query: {
1120
- SkipCount: data.skipCount,
1121
- MaxResultCount: data.maxResultCount
1122
- },
1123
- errors: {
1124
- 400: 'Bad Request',
1125
- 401: 'Unauthorized',
1126
- 403: 'Forbidden',
1127
- 404: 'Not Found',
1128
- 500: 'Server Error',
1129
- 501: 'Server Error'
1130
- }
1131
- });
1132
- }
1133
-
1134
- /**
1135
- * @param data The data for the request.
1136
- * @param data.entityInformationTypeId
1137
- * @param data.requestBody
1138
- * @returns unknown Success
1139
- * @throws ApiError
1140
- */
1141
- public postApiMerchantServiceOrganizations(data: PostApiMerchantServiceOrganizationsData): CancelablePromise<PostApiMerchantServiceOrganizationsResponse> {
1142
- return this.httpRequest.request({
1143
- method: 'POST',
1144
- url: '/api/merchant-service/organizations',
1145
- query: {
1146
- entityInformationTypeId: data.entityInformationTypeId
1147
- },
1148
- body: data.requestBody,
1149
- mediaType: 'application/json',
1150
- errors: {
1151
- 400: 'Bad Request',
1152
- 401: 'Unauthorized',
1153
- 403: 'Forbidden',
1154
- 404: 'Not Found',
1155
- 500: 'Server Error',
1156
- 501: 'Server Error'
1157
- }
1158
- });
1159
- }
1160
-
1161
- /**
1162
- * @param data The data for the request.
1163
- * @param data.requestBody
1164
- * @returns unknown Success
1165
- * @throws ApiError
1166
- */
1167
- public putApiMerchantServiceOrganizations(data: PutApiMerchantServiceOrganizationsData = {}): CancelablePromise<PutApiMerchantServiceOrganizationsResponse> {
1168
- return this.httpRequest.request({
1169
- method: 'PUT',
1170
- url: '/api/merchant-service/organizations',
1171
- body: data.requestBody,
1172
- mediaType: 'application/json',
1173
- errors: {
1174
- 400: 'Bad Request',
1175
- 401: 'Unauthorized',
1176
- 403: 'Forbidden',
1177
- 404: 'Not Found',
1178
- 500: 'Server Error',
1179
- 501: 'Server Error'
1180
- }
1181
- });
1182
- }
1183
-
1184
- /**
1185
- * @param data The data for the request.
1186
- * @param data.id
1187
- * @param data.includeSubCompanies
1188
- * @returns unknown Success
1189
- * @throws ApiError
1190
- */
1191
- public deleteApiMerchantServiceOrganizations(data: DeleteApiMerchantServiceOrganizationsData): CancelablePromise<DeleteApiMerchantServiceOrganizationsResponse> {
1192
- return this.httpRequest.request({
1193
- method: 'DELETE',
1194
- url: '/api/merchant-service/organizations',
1195
- query: {
1196
- id: data.id,
1197
- includeSubCompanies: data.includeSubCompanies
1198
- },
1199
- errors: {
1200
- 400: 'Bad Request',
1201
- 401: 'Unauthorized',
1202
- 403: 'Forbidden',
1203
- 404: 'Not Found',
1204
- 500: 'Server Error',
1205
- 501: 'Server Error'
1206
- }
1207
- });
1208
- }
1209
-
1210
- /**
1211
- * @param data The data for the request.
1212
- * @param data.parentOrganizationId
1213
- * @param data.requestBody
1214
- * @returns unknown Success
1215
- * @throws ApiError
1216
- */
1217
- public postApiMerchantServiceOrganizationsSubOrganization(data: PostApiMerchantServiceOrganizationsSubOrganizationData): CancelablePromise<PostApiMerchantServiceOrganizationsSubOrganizationResponse> {
1218
- return this.httpRequest.request({
1219
- method: 'POST',
1220
- url: '/api/merchant-service/organizations/sub-organization',
1221
- query: {
1222
- parentOrganizationId: data.parentOrganizationId
1223
- },
1224
- body: data.requestBody,
1225
- mediaType: 'application/json',
1226
- errors: {
1227
- 400: 'Bad Request',
1228
- 401: 'Unauthorized',
1229
- 403: 'Forbidden',
1230
- 404: 'Not Found',
1231
- 500: 'Server Error',
1232
- 501: 'Server Error'
1233
- }
1234
- });
1235
- }
1236
-
1237
- }
1238
-
1239
- export class PersonalSummaryService {
1240
- constructor(public readonly httpRequest: BaseHttpRequest) { }
1241
-
1242
- /**
1243
- * @param data The data for the request.
1244
- * @param data.id
1245
- * @returns unknown Success
1246
- * @throws ApiError
1247
- */
1248
- public getApiMerchantServicePersonalSummariesById(data: GetApiMerchantServicePersonalSummariesByIdData): CancelablePromise<GetApiMerchantServicePersonalSummariesByIdResponse> {
1249
- return this.httpRequest.request({
1250
- method: 'GET',
1251
- url: '/api/merchant-service/personal-summaries/{id}',
1252
- path: {
1253
- id: data.id
1254
- },
1255
- errors: {
1256
- 400: 'Bad Request',
1257
- 401: 'Unauthorized',
1258
- 403: 'Forbidden',
1259
- 404: 'Not Found',
1260
- 500: 'Server Error',
1261
- 501: 'Server Error'
1262
- }
1263
- });
1264
- }
1265
-
1266
- /**
1267
- * @param data The data for the request.
1268
- * @param data.sorting
1269
- * @param data.skipCount
1270
- * @param data.maxResultCount
1271
- * @returns unknown Success
1272
- * @throws ApiError
1273
- */
1274
- public getApiMerchantServicePersonalSummaries(data: GetApiMerchantServicePersonalSummariesData = {}): CancelablePromise<GetApiMerchantServicePersonalSummariesResponse> {
1275
- return this.httpRequest.request({
1276
- method: 'GET',
1277
- url: '/api/merchant-service/personal-summaries',
1278
- query: {
1279
- Sorting: data.sorting,
1280
- SkipCount: data.skipCount,
1281
- MaxResultCount: data.maxResultCount
1282
- },
1283
- errors: {
1284
- 400: 'Bad Request',
1285
- 401: 'Unauthorized',
1286
- 403: 'Forbidden',
1287
- 404: 'Not Found',
1288
- 500: 'Server Error',
1289
- 501: 'Server Error'
1290
- }
1291
- });
1292
- }
1293
-
1294
- /**
1295
- * @param data The data for the request.
1296
- * @param data.individualId
1297
- * @param data.requestBody
1298
- * @returns unknown Success
1299
- * @throws ApiError
1300
- */
1301
- public postApiMerchantServicePersonalSummaries(data: PostApiMerchantServicePersonalSummariesData): CancelablePromise<PostApiMerchantServicePersonalSummariesResponse> {
1302
- return this.httpRequest.request({
1303
- method: 'POST',
1304
- url: '/api/merchant-service/personal-summaries',
1305
- query: {
1306
- individualId: data.individualId
1307
- },
1308
- body: data.requestBody,
1309
- mediaType: 'application/json',
1310
- errors: {
1311
- 400: 'Bad Request',
1312
- 401: 'Unauthorized',
1313
- 403: 'Forbidden',
1314
- 404: 'Not Found',
1315
- 500: 'Server Error',
1316
- 501: 'Server Error'
1317
- }
1318
- });
1319
- }
1320
-
1321
- /**
1322
- * @param data The data for the request.
1323
- * @param data.requestBody
1324
- * @returns unknown Success
1325
- * @throws ApiError
1326
- */
1327
- public putApiMerchantServicePersonalSummaries(data: PutApiMerchantServicePersonalSummariesData = {}): CancelablePromise<PutApiMerchantServicePersonalSummariesResponse> {
1328
- return this.httpRequest.request({
1329
- method: 'PUT',
1330
- url: '/api/merchant-service/personal-summaries',
1331
- body: data.requestBody,
1332
- mediaType: 'application/json',
1333
- errors: {
1334
- 400: 'Bad Request',
1335
- 401: 'Unauthorized',
1336
- 403: 'Forbidden',
1337
- 404: 'Not Found',
1338
- 500: 'Server Error',
1339
- 501: 'Server Error'
1340
- }
1341
- });
1342
- }
1343
-
1344
- /**
1345
- * @param data The data for the request.
1346
- * @param data.id
1347
- * @returns unknown Success
1348
- * @throws ApiError
1349
- */
1350
- public deleteApiMerchantServicePersonalSummaries(data: DeleteApiMerchantServicePersonalSummariesData): CancelablePromise<DeleteApiMerchantServicePersonalSummariesResponse> {
1351
- return this.httpRequest.request({
1352
- method: 'DELETE',
1353
- url: '/api/merchant-service/personal-summaries',
1354
- query: {
1355
- id: data.id
1356
- },
1357
- errors: {
1358
- 400: 'Bad Request',
1359
- 401: 'Unauthorized',
1360
- 403: 'Forbidden',
1361
- 404: 'Not Found',
1362
- 500: 'Server Error',
1363
- 501: 'Server Error'
1364
- }
1365
- });
1366
- }
1367
-
1368
- }
1369
-
1370
- export class ProductGroupService {
1371
- constructor(public readonly httpRequest: BaseHttpRequest) { }
1372
-
1373
- /**
1374
- * @param data The data for the request.
1375
- * @param data.id
1376
- * @returns unknown Success
1377
- * @throws ApiError
1378
- */
1379
- public getApiMerchantServiceProductGroupsById(data: GetApiMerchantServiceProductGroupsByIdData): CancelablePromise<GetApiMerchantServiceProductGroupsByIdResponse> {
1380
- return this.httpRequest.request({
1381
- method: 'GET',
1382
- url: '/api/merchant-service/product-groups/{id}',
1383
- path: {
1384
- id: data.id
1385
- },
1386
- errors: {
1387
- 400: 'Bad Request',
1388
- 401: 'Unauthorized',
1389
- 403: 'Forbidden',
1390
- 404: 'Not Found',
1391
- 500: 'Server Error',
1392
- 501: 'Server Error'
1393
- }
1394
- });
1395
- }
1396
-
1397
- /**
1398
- * @param data The data for the request.
1399
- * @param data.sorting
1400
- * @param data.skipCount
1401
- * @param data.maxResultCount
1402
- * @returns unknown Success
1403
- * @throws ApiError
1404
- */
1405
- public getApiMerchantServiceProductGroups(data: GetApiMerchantServiceProductGroupsData = {}): CancelablePromise<GetApiMerchantServiceProductGroupsResponse> {
1406
- return this.httpRequest.request({
1407
- method: 'GET',
1408
- url: '/api/merchant-service/product-groups',
1409
- query: {
1410
- Sorting: data.sorting,
1411
- SkipCount: data.skipCount,
1412
- MaxResultCount: data.maxResultCount
1413
- },
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.organizationId
1428
- * @param data.requestBody
1429
- * @returns unknown Success
1430
- * @throws ApiError
1431
- */
1432
- public postApiMerchantServiceProductGroups(data: PostApiMerchantServiceProductGroupsData): CancelablePromise<PostApiMerchantServiceProductGroupsResponse> {
1433
- return this.httpRequest.request({
1434
- method: 'POST',
1435
- url: '/api/merchant-service/product-groups',
1436
- query: {
1437
- organizationId: data.organizationId
1438
- },
1439
- body: data.requestBody,
1440
- mediaType: 'application/json',
1441
- errors: {
1442
- 400: 'Bad Request',
1443
- 401: 'Unauthorized',
1444
- 403: 'Forbidden',
1445
- 404: 'Not Found',
1446
- 500: 'Server Error',
1447
- 501: 'Server Error'
1448
- }
1449
- });
1450
- }
1451
-
1452
- /**
1453
- * @param data The data for the request.
1454
- * @param data.requestBody
1455
- * @returns unknown Success
1456
- * @throws ApiError
1457
- */
1458
- public putApiMerchantServiceProductGroups(data: PutApiMerchantServiceProductGroupsData = {}): CancelablePromise<PutApiMerchantServiceProductGroupsResponse> {
1459
- return this.httpRequest.request({
1460
- method: 'PUT',
1461
- url: '/api/merchant-service/product-groups',
1462
- body: data.requestBody,
1463
- mediaType: 'application/json',
1464
- errors: {
1465
- 400: 'Bad Request',
1466
- 401: 'Unauthorized',
1467
- 403: 'Forbidden',
1468
- 404: 'Not Found',
1469
- 500: 'Server Error',
1470
- 501: 'Server Error'
1471
- }
1472
- });
1473
- }
1474
-
1475
- /**
1476
- * @param data The data for the request.
1477
- * @param data.id
1478
- * @returns unknown Success
1479
- * @throws ApiError
1480
- */
1481
- public deleteApiMerchantServiceProductGroups(data: DeleteApiMerchantServiceProductGroupsData): CancelablePromise<DeleteApiMerchantServiceProductGroupsResponse> {
1482
- return this.httpRequest.request({
1483
- method: 'DELETE',
1484
- url: '/api/merchant-service/product-groups',
1485
- query: {
1486
- id: data.id
1487
- },
1488
- errors: {
1489
- 400: 'Bad Request',
1490
- 401: 'Unauthorized',
1491
- 403: 'Forbidden',
1492
- 404: 'Not Found',
1493
- 500: 'Server Error',
1494
- 501: 'Server Error'
1495
- }
1496
- });
1497
- }
1498
-
1499
- }
1500
-
1501
- export class TelephoneTypeService {
1502
- constructor(public readonly httpRequest: BaseHttpRequest) { }
1503
-
1504
- /**
1505
- * @param data The data for the request.
1506
- * @param data.id
1507
- * @returns unknown Success
1508
- * @throws ApiError
1509
- */
1510
- public getApiMerchantServiceTelephoneTypesById(data: GetApiMerchantServiceTelephoneTypesByIdData): CancelablePromise<GetApiMerchantServiceTelephoneTypesByIdResponse> {
1511
- return this.httpRequest.request({
1512
- method: 'GET',
1513
- url: '/api/merchant-service/telephone-types/{id}',
1514
- path: {
1515
- id: data.id
1516
- },
1517
- errors: {
1518
- 400: 'Bad Request',
1519
- 401: 'Unauthorized',
1520
- 403: 'Forbidden',
1521
- 404: 'Not Found',
1522
- 500: 'Server Error',
1523
- 501: 'Server Error'
1524
- }
1525
- });
1526
- }
1527
-
1528
- /**
1529
- * @param data The data for the request.
1530
- * @param data.sorting
1531
- * @param data.skipCount
1532
- * @param data.maxResultCount
1533
- * @returns unknown Success
1534
- * @throws ApiError
1535
- */
1536
- public getApiMerchantServiceTelephoneTypes(data: GetApiMerchantServiceTelephoneTypesData = {}): CancelablePromise<GetApiMerchantServiceTelephoneTypesResponse> {
1537
- return this.httpRequest.request({
1538
- method: 'GET',
1539
- url: '/api/merchant-service/telephone-types',
1540
- query: {
1541
- Sorting: data.sorting,
1542
- SkipCount: data.skipCount,
1543
- MaxResultCount: data.maxResultCount
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.requestBody
1559
- * @returns unknown Success
1560
- * @throws ApiError
1561
- */
1562
- public putApiMerchantServiceTelephoneTypes(data: PutApiMerchantServiceTelephoneTypesData = {}): CancelablePromise<PutApiMerchantServiceTelephoneTypesResponse> {
1563
- return this.httpRequest.request({
1564
- method: 'PUT',
1565
- url: '/api/merchant-service/telephone-types',
1566
- body: data.requestBody,
1567
- mediaType: 'application/json',
1568
- errors: {
1569
- 400: 'Bad Request',
1570
- 401: 'Unauthorized',
1571
- 403: 'Forbidden',
1572
- 404: 'Not Found',
1573
- 500: 'Server Error',
1574
- 501: 'Server Error'
1575
- }
1576
- });
1577
- }
1578
-
1579
- /**
1580
- * @param data The data for the request.
1581
- * @param data.id
1582
- * @returns unknown Success
1583
- * @throws ApiError
1584
- */
1585
- public deleteApiMerchantServiceTelephoneTypes(data: DeleteApiMerchantServiceTelephoneTypesData): CancelablePromise<DeleteApiMerchantServiceTelephoneTypesResponse> {
1586
- return this.httpRequest.request({
1587
- method: 'DELETE',
1588
- url: '/api/merchant-service/telephone-types',
1589
- query: {
1590
- id: data.id
1591
- },
1592
- errors: {
1593
- 400: 'Bad Request',
1594
- 401: 'Unauthorized',
1595
- 403: 'Forbidden',
1596
- 404: 'Not Found',
1597
- 500: 'Server Error',
1598
- 501: 'Server Error'
1599
- }
1600
- });
1601
- }
1602
-
1
+ // This file is auto-generated by @hey-api/openapi-ts
2
+
3
+ import type { CancelablePromise } from './core/CancelablePromise';
4
+ import type { BaseHttpRequest } from './core/BaseHttpRequest';
5
+ import type { GetApiAbpApiDefinitionData, GetApiAbpApiDefinitionResponse, GetApiAbpApplicationConfigurationData, GetApiAbpApplicationConfigurationResponse, GetApiAbpApplicationLocalizationData, GetApiAbpApplicationLocalizationResponse, GetApiMerchantServiceAddressTypesByIdData, GetApiMerchantServiceAddressTypesByIdResponse, GetApiMerchantServiceAddressTypesData, GetApiMerchantServiceAddressTypesResponse, PutApiMerchantServiceAddressTypesData, PutApiMerchantServiceAddressTypesResponse, DeleteApiMerchantServiceAddressTypesData, DeleteApiMerchantServiceAddressTypesResponse, GetApiMerchantServiceAffiliationTypesByIdData, GetApiMerchantServiceAffiliationTypesByIdResponse, GetApiMerchantServiceAffiliationTypesData, GetApiMerchantServiceAffiliationTypesResponse, PostApiMerchantServiceAffiliationTypesData, PostApiMerchantServiceAffiliationTypesResponse, PutApiMerchantServiceAffiliationTypesData, PutApiMerchantServiceAffiliationTypesResponse, DeleteApiMerchantServiceAffiliationTypesData, DeleteApiMerchantServiceAffiliationTypesResponse, GetApiMerchantServiceContactInformationTypesDetailByIdData, GetApiMerchantServiceContactInformationTypesDetailByIdResponse, GetApiMerchantServiceContactInformationTypesDetailData, GetApiMerchantServiceContactInformationTypesDetailResponse, PutApiMerchantServiceContactInformationTypesData, PutApiMerchantServiceContactInformationTypesResponse, GetApiMerchantServiceEmailCommonDatasByIdData, GetApiMerchantServiceEmailCommonDatasByIdResponse, GetApiMerchantServiceEmailCommonDatasData, GetApiMerchantServiceEmailCommonDatasResponse, PutApiMerchantServiceEmailCommonDatasData, PutApiMerchantServiceEmailCommonDatasResponse, DeleteApiMerchantServiceEmailCommonDatasData, DeleteApiMerchantServiceEmailCommonDatasResponse, GetApiMerchantServiceEntityInformationTypesDetailByIdData, GetApiMerchantServiceEntityInformationTypesDetailByIdResponse, GetApiMerchantServiceEntityInformationTypesDetailData, GetApiMerchantServiceEntityInformationTypesDetailResponse, PostApiMerchantServiceEntityInformationTypesData, PostApiMerchantServiceEntityInformationTypesResponse, PutApiMerchantServiceEntityInformationTypesData, PutApiMerchantServiceEntityInformationTypesResponse, DeleteApiMerchantServiceEntityInformationTypesData, DeleteApiMerchantServiceEntityInformationTypesResponse, GetApiMerchantServiceIndividualsDetailByIdData, GetApiMerchantServiceIndividualsDetailByIdResponse, GetApiMerchantServiceIndividualsDetailData, GetApiMerchantServiceIndividualsDetailResponse, PostApiMerchantServiceIndividualsData, PostApiMerchantServiceIndividualsResponse, PutApiMerchantServiceIndividualsData, PutApiMerchantServiceIndividualsResponse, DeleteApiMerchantServiceIndividualsData, DeleteApiMerchantServiceIndividualsResponse, GetApiMerchantServiceMerchantsDetailByIdData, GetApiMerchantServiceMerchantsDetailByIdResponse, GetApiMerchantServiceMerchantsDetailData, GetApiMerchantServiceMerchantsDetailResponse, PostApiMerchantServiceMerchantsTelephoneData, PostApiMerchantServiceMerchantsTelephoneResponse, PostApiMerchantServiceMerchantsAddressData, PostApiMerchantServiceMerchantsAddressResponse, PostApiMerchantServiceMerchantsEmailData, PostApiMerchantServiceMerchantsEmailResponse, PostApiMerchantServiceMerchantsWithComponentsData, PostApiMerchantServiceMerchantsWithComponentsResponse, PutApiMerchantServiceMerchantsWithComponentsData, PutApiMerchantServiceMerchantsWithComponentsResponse, DeleteApiMerchantServiceMerchantsWithComponentsData, DeleteApiMerchantServiceMerchantsWithComponentsResponse, GetApiMerchantServiceNameCommonDatasByIdData, GetApiMerchantServiceNameCommonDatasByIdResponse, GetApiMerchantServiceNameCommonDatasData, GetApiMerchantServiceNameCommonDatasResponse, PutApiMerchantServiceNameCommonDatasData, PutApiMerchantServiceNameCommonDatasResponse, DeleteApiMerchantServiceNameCommonDatasData, DeleteApiMerchantServiceNameCommonDatasResponse, GetApiMerchantServiceOrganizationsDetailByIdData, GetApiMerchantServiceOrganizationsDetailByIdResponse, GetApiMerchantServiceOrganizationsDetailData, GetApiMerchantServiceOrganizationsDetailResponse, PostApiMerchantServiceOrganizationsData, PostApiMerchantServiceOrganizationsResponse, PutApiMerchantServiceOrganizationsData, PutApiMerchantServiceOrganizationsResponse, DeleteApiMerchantServiceOrganizationsData, DeleteApiMerchantServiceOrganizationsResponse, PostApiMerchantServiceOrganizationsSubOrganizationData, PostApiMerchantServiceOrganizationsSubOrganizationResponse, GetApiMerchantServicePersonalSummariesByIdData, GetApiMerchantServicePersonalSummariesByIdResponse, GetApiMerchantServicePersonalSummariesData, GetApiMerchantServicePersonalSummariesResponse, PostApiMerchantServicePersonalSummariesData, PostApiMerchantServicePersonalSummariesResponse, PutApiMerchantServicePersonalSummariesData, PutApiMerchantServicePersonalSummariesResponse, DeleteApiMerchantServicePersonalSummariesData, DeleteApiMerchantServicePersonalSummariesResponse, GetApiMerchantServiceProductGroupsByIdData, GetApiMerchantServiceProductGroupsByIdResponse, GetApiMerchantServiceProductGroupsData, GetApiMerchantServiceProductGroupsResponse, PostApiMerchantServiceProductGroupsData, PostApiMerchantServiceProductGroupsResponse, PutApiMerchantServiceProductGroupsData, PutApiMerchantServiceProductGroupsResponse, DeleteApiMerchantServiceProductGroupsData, DeleteApiMerchantServiceProductGroupsResponse, GetApiMerchantServiceTelephoneTypesByIdData, GetApiMerchantServiceTelephoneTypesByIdResponse, GetApiMerchantServiceTelephoneTypesData, GetApiMerchantServiceTelephoneTypesResponse, PutApiMerchantServiceTelephoneTypesData, PutApiMerchantServiceTelephoneTypesResponse, DeleteApiMerchantServiceTelephoneTypesData, DeleteApiMerchantServiceTelephoneTypesResponse } from './types.gen';
6
+
7
+ export class AbpApiDefinitionService {
8
+ constructor(public readonly httpRequest: BaseHttpRequest) { }
9
+
10
+ /**
11
+ * @param data The data for the request.
12
+ * @param data.includeTypes
13
+ * @returns unknown Success
14
+ * @throws ApiError
15
+ */
16
+ public getApiAbpApiDefinition(data: GetApiAbpApiDefinitionData = {}): CancelablePromise<GetApiAbpApiDefinitionResponse> {
17
+ return this.httpRequest.request({
18
+ method: 'GET',
19
+ url: '/api/abp/api-definition',
20
+ query: {
21
+ IncludeTypes: data.includeTypes
22
+ },
23
+ errors: {
24
+ 400: 'Bad Request',
25
+ 401: 'Unauthorized',
26
+ 403: 'Forbidden',
27
+ 404: 'Not Found',
28
+ 500: 'Server Error',
29
+ 501: 'Server Error'
30
+ }
31
+ });
32
+ }
33
+
34
+ }
35
+
36
+ export class AbpApplicationConfigurationService {
37
+ constructor(public readonly httpRequest: BaseHttpRequest) { }
38
+
39
+ /**
40
+ * @param data The data for the request.
41
+ * @param data.includeLocalizationResources
42
+ * @returns unknown Success
43
+ * @throws ApiError
44
+ */
45
+ public getApiAbpApplicationConfiguration(data: GetApiAbpApplicationConfigurationData = {}): CancelablePromise<GetApiAbpApplicationConfigurationResponse> {
46
+ return this.httpRequest.request({
47
+ method: 'GET',
48
+ url: '/api/abp/application-configuration',
49
+ query: {
50
+ IncludeLocalizationResources: data.includeLocalizationResources
51
+ },
52
+ errors: {
53
+ 400: 'Bad Request',
54
+ 401: 'Unauthorized',
55
+ 403: 'Forbidden',
56
+ 404: 'Not Found',
57
+ 500: 'Server Error',
58
+ 501: 'Server Error'
59
+ }
60
+ });
61
+ }
62
+
63
+ }
64
+
65
+ export class AbpApplicationLocalizationService {
66
+ constructor(public readonly httpRequest: BaseHttpRequest) { }
67
+
68
+ /**
69
+ * @param data The data for the request.
70
+ * @param data.cultureName
71
+ * @param data.onlyDynamics
72
+ * @returns unknown Success
73
+ * @throws ApiError
74
+ */
75
+ public getApiAbpApplicationLocalization(data: GetApiAbpApplicationLocalizationData): CancelablePromise<GetApiAbpApplicationLocalizationResponse> {
76
+ return this.httpRequest.request({
77
+ method: 'GET',
78
+ url: '/api/abp/application-localization',
79
+ query: {
80
+ CultureName: data.cultureName,
81
+ OnlyDynamics: data.onlyDynamics
82
+ },
83
+ errors: {
84
+ 400: 'Bad Request',
85
+ 401: 'Unauthorized',
86
+ 403: 'Forbidden',
87
+ 404: 'Not Found',
88
+ 500: 'Server Error',
89
+ 501: 'Server Error'
90
+ }
91
+ });
92
+ }
93
+
94
+ }
95
+
96
+ export class AddressTypeService {
97
+ constructor(public readonly httpRequest: BaseHttpRequest) { }
98
+
99
+ /**
100
+ * @param data The data for the request.
101
+ * @param data.id
102
+ * @returns unknown Success
103
+ * @throws ApiError
104
+ */
105
+ public getApiMerchantServiceAddressTypesById(data: GetApiMerchantServiceAddressTypesByIdData): CancelablePromise<GetApiMerchantServiceAddressTypesByIdResponse> {
106
+ return this.httpRequest.request({
107
+ method: 'GET',
108
+ url: '/api/merchant-service/address-types/{id}',
109
+ path: {
110
+ id: data.id
111
+ },
112
+ errors: {
113
+ 400: 'Bad Request',
114
+ 401: 'Unauthorized',
115
+ 403: 'Forbidden',
116
+ 404: 'Not Found',
117
+ 500: 'Server Error',
118
+ 501: 'Server Error'
119
+ }
120
+ });
121
+ }
122
+
123
+ /**
124
+ * @param data The data for the request.
125
+ * @param data.sorting
126
+ * @param data.skipCount
127
+ * @param data.maxResultCount
128
+ * @returns unknown Success
129
+ * @throws ApiError
130
+ */
131
+ public getApiMerchantServiceAddressTypes(data: GetApiMerchantServiceAddressTypesData = {}): CancelablePromise<GetApiMerchantServiceAddressTypesResponse> {
132
+ return this.httpRequest.request({
133
+ method: 'GET',
134
+ url: '/api/merchant-service/address-types',
135
+ query: {
136
+ Sorting: data.sorting,
137
+ SkipCount: data.skipCount,
138
+ MaxResultCount: data.maxResultCount
139
+ },
140
+ errors: {
141
+ 400: 'Bad Request',
142
+ 401: 'Unauthorized',
143
+ 403: 'Forbidden',
144
+ 404: 'Not Found',
145
+ 500: 'Server Error',
146
+ 501: 'Server Error'
147
+ }
148
+ });
149
+ }
150
+
151
+ /**
152
+ * @param data The data for the request.
153
+ * @param data.requestBody
154
+ * @returns unknown Success
155
+ * @throws ApiError
156
+ */
157
+ public putApiMerchantServiceAddressTypes(data: PutApiMerchantServiceAddressTypesData = {}): CancelablePromise<PutApiMerchantServiceAddressTypesResponse> {
158
+ return this.httpRequest.request({
159
+ method: 'PUT',
160
+ url: '/api/merchant-service/address-types',
161
+ body: data.requestBody,
162
+ mediaType: 'application/json',
163
+ errors: {
164
+ 400: 'Bad Request',
165
+ 401: 'Unauthorized',
166
+ 403: 'Forbidden',
167
+ 404: 'Not Found',
168
+ 500: 'Server Error',
169
+ 501: 'Server Error'
170
+ }
171
+ });
172
+ }
173
+
174
+ /**
175
+ * @param data The data for the request.
176
+ * @param data.id
177
+ * @returns unknown Success
178
+ * @throws ApiError
179
+ */
180
+ public deleteApiMerchantServiceAddressTypes(data: DeleteApiMerchantServiceAddressTypesData): CancelablePromise<DeleteApiMerchantServiceAddressTypesResponse> {
181
+ return this.httpRequest.request({
182
+ method: 'DELETE',
183
+ url: '/api/merchant-service/address-types',
184
+ query: {
185
+ id: data.id
186
+ },
187
+ errors: {
188
+ 400: 'Bad Request',
189
+ 401: 'Unauthorized',
190
+ 403: 'Forbidden',
191
+ 404: 'Not Found',
192
+ 500: 'Server Error',
193
+ 501: 'Server Error'
194
+ }
195
+ });
196
+ }
197
+
198
+ }
199
+
200
+ export class AffiliationTypeService {
201
+ constructor(public readonly httpRequest: BaseHttpRequest) { }
202
+
203
+ /**
204
+ * @param data The data for the request.
205
+ * @param data.id
206
+ * @returns unknown Success
207
+ * @throws ApiError
208
+ */
209
+ public getApiMerchantServiceAffiliationTypesById(data: GetApiMerchantServiceAffiliationTypesByIdData): CancelablePromise<GetApiMerchantServiceAffiliationTypesByIdResponse> {
210
+ return this.httpRequest.request({
211
+ method: 'GET',
212
+ url: '/api/merchant-service/affiliation-types/{id}',
213
+ path: {
214
+ id: data.id
215
+ },
216
+ errors: {
217
+ 400: 'Bad Request',
218
+ 401: 'Unauthorized',
219
+ 403: 'Forbidden',
220
+ 404: 'Not Found',
221
+ 500: 'Server Error',
222
+ 501: 'Server Error'
223
+ }
224
+ });
225
+ }
226
+
227
+ /**
228
+ * @param data The data for the request.
229
+ * @param data.sorting
230
+ * @param data.skipCount
231
+ * @param data.maxResultCount
232
+ * @returns unknown Success
233
+ * @throws ApiError
234
+ */
235
+ public getApiMerchantServiceAffiliationTypes(data: GetApiMerchantServiceAffiliationTypesData = {}): CancelablePromise<GetApiMerchantServiceAffiliationTypesResponse> {
236
+ return this.httpRequest.request({
237
+ method: 'GET',
238
+ url: '/api/merchant-service/affiliation-types',
239
+ query: {
240
+ Sorting: data.sorting,
241
+ SkipCount: data.skipCount,
242
+ MaxResultCount: data.maxResultCount
243
+ },
244
+ errors: {
245
+ 400: 'Bad Request',
246
+ 401: 'Unauthorized',
247
+ 403: 'Forbidden',
248
+ 404: 'Not Found',
249
+ 500: 'Server Error',
250
+ 501: 'Server Error'
251
+ }
252
+ });
253
+ }
254
+
255
+ /**
256
+ * @param data The data for the request.
257
+ * @param data.merchantId
258
+ * @param data.requestBody
259
+ * @returns unknown Success
260
+ * @throws ApiError
261
+ */
262
+ public postApiMerchantServiceAffiliationTypes(data: PostApiMerchantServiceAffiliationTypesData): CancelablePromise<PostApiMerchantServiceAffiliationTypesResponse> {
263
+ return this.httpRequest.request({
264
+ method: 'POST',
265
+ url: '/api/merchant-service/affiliation-types',
266
+ query: {
267
+ merchantId: data.merchantId
268
+ },
269
+ body: data.requestBody,
270
+ mediaType: 'application/json',
271
+ errors: {
272
+ 400: 'Bad Request',
273
+ 401: 'Unauthorized',
274
+ 403: 'Forbidden',
275
+ 404: 'Not Found',
276
+ 500: 'Server Error',
277
+ 501: 'Server Error'
278
+ }
279
+ });
280
+ }
281
+
282
+ /**
283
+ * @param data The data for the request.
284
+ * @param data.requestBody
285
+ * @returns unknown Success
286
+ * @throws ApiError
287
+ */
288
+ public putApiMerchantServiceAffiliationTypes(data: PutApiMerchantServiceAffiliationTypesData = {}): CancelablePromise<PutApiMerchantServiceAffiliationTypesResponse> {
289
+ return this.httpRequest.request({
290
+ method: 'PUT',
291
+ url: '/api/merchant-service/affiliation-types',
292
+ body: data.requestBody,
293
+ mediaType: 'application/json',
294
+ errors: {
295
+ 400: 'Bad Request',
296
+ 401: 'Unauthorized',
297
+ 403: 'Forbidden',
298
+ 404: 'Not Found',
299
+ 500: 'Server Error',
300
+ 501: 'Server Error'
301
+ }
302
+ });
303
+ }
304
+
305
+ /**
306
+ * @param data The data for the request.
307
+ * @param data.id
308
+ * @returns unknown Success
309
+ * @throws ApiError
310
+ */
311
+ public deleteApiMerchantServiceAffiliationTypes(data: DeleteApiMerchantServiceAffiliationTypesData): CancelablePromise<DeleteApiMerchantServiceAffiliationTypesResponse> {
312
+ return this.httpRequest.request({
313
+ method: 'DELETE',
314
+ url: '/api/merchant-service/affiliation-types',
315
+ query: {
316
+ id: data.id
317
+ },
318
+ errors: {
319
+ 400: 'Bad Request',
320
+ 401: 'Unauthorized',
321
+ 403: 'Forbidden',
322
+ 404: 'Not Found',
323
+ 500: 'Server Error',
324
+ 501: 'Server Error'
325
+ }
326
+ });
327
+ }
328
+
329
+ }
330
+
331
+ export class ContactInformationTypeService {
332
+ constructor(public readonly httpRequest: BaseHttpRequest) { }
333
+
334
+ /**
335
+ * @param data The data for the request.
336
+ * @param data.id
337
+ * @returns unknown Success
338
+ * @throws ApiError
339
+ */
340
+ public getApiMerchantServiceContactInformationTypesDetailById(data: GetApiMerchantServiceContactInformationTypesDetailByIdData): CancelablePromise<GetApiMerchantServiceContactInformationTypesDetailByIdResponse> {
341
+ return this.httpRequest.request({
342
+ method: 'GET',
343
+ url: '/api/merchant-service/contact-information-types/detail/{id}',
344
+ path: {
345
+ id: data.id
346
+ },
347
+ errors: {
348
+ 400: 'Bad Request',
349
+ 401: 'Unauthorized',
350
+ 403: 'Forbidden',
351
+ 404: 'Not Found',
352
+ 500: 'Server Error',
353
+ 501: 'Server Error'
354
+ }
355
+ });
356
+ }
357
+
358
+ /**
359
+ * @param data The data for the request.
360
+ * @param data.skipCount
361
+ * @param data.maxResultCount
362
+ * @returns unknown Success
363
+ * @throws ApiError
364
+ */
365
+ public getApiMerchantServiceContactInformationTypesDetail(data: GetApiMerchantServiceContactInformationTypesDetailData = {}): CancelablePromise<GetApiMerchantServiceContactInformationTypesDetailResponse> {
366
+ return this.httpRequest.request({
367
+ method: 'GET',
368
+ url: '/api/merchant-service/contact-information-types/detail',
369
+ query: {
370
+ SkipCount: data.skipCount,
371
+ MaxResultCount: data.maxResultCount
372
+ },
373
+ errors: {
374
+ 400: 'Bad Request',
375
+ 401: 'Unauthorized',
376
+ 403: 'Forbidden',
377
+ 404: 'Not Found',
378
+ 500: 'Server Error',
379
+ 501: 'Server Error'
380
+ }
381
+ });
382
+ }
383
+
384
+ /**
385
+ * @param data The data for the request.
386
+ * @param data.requestBody
387
+ * @returns unknown Success
388
+ * @throws ApiError
389
+ */
390
+ public putApiMerchantServiceContactInformationTypes(data: PutApiMerchantServiceContactInformationTypesData = {}): CancelablePromise<PutApiMerchantServiceContactInformationTypesResponse> {
391
+ return this.httpRequest.request({
392
+ method: 'PUT',
393
+ url: '/api/merchant-service/contact-information-types',
394
+ body: data.requestBody,
395
+ mediaType: 'application/json',
396
+ errors: {
397
+ 400: 'Bad Request',
398
+ 401: 'Unauthorized',
399
+ 403: 'Forbidden',
400
+ 404: 'Not Found',
401
+ 500: 'Server Error',
402
+ 501: 'Server Error'
403
+ }
404
+ });
405
+ }
406
+
407
+ }
408
+
409
+ export class EmailCommonDataService {
410
+ constructor(public readonly httpRequest: BaseHttpRequest) { }
411
+
412
+ /**
413
+ * @param data The data for the request.
414
+ * @param data.id
415
+ * @returns unknown Success
416
+ * @throws ApiError
417
+ */
418
+ public getApiMerchantServiceEmailCommonDatasById(data: GetApiMerchantServiceEmailCommonDatasByIdData): CancelablePromise<GetApiMerchantServiceEmailCommonDatasByIdResponse> {
419
+ return this.httpRequest.request({
420
+ method: 'GET',
421
+ url: '/api/merchant-service/email-common-datas/{id}',
422
+ path: {
423
+ id: data.id
424
+ },
425
+ errors: {
426
+ 400: 'Bad Request',
427
+ 401: 'Unauthorized',
428
+ 403: 'Forbidden',
429
+ 404: 'Not Found',
430
+ 500: 'Server Error',
431
+ 501: 'Server Error'
432
+ }
433
+ });
434
+ }
435
+
436
+ /**
437
+ * @param data The data for the request.
438
+ * @param data.sorting
439
+ * @param data.skipCount
440
+ * @param data.maxResultCount
441
+ * @returns unknown Success
442
+ * @throws ApiError
443
+ */
444
+ public getApiMerchantServiceEmailCommonDatas(data: GetApiMerchantServiceEmailCommonDatasData = {}): CancelablePromise<GetApiMerchantServiceEmailCommonDatasResponse> {
445
+ return this.httpRequest.request({
446
+ method: 'GET',
447
+ url: '/api/merchant-service/email-common-datas',
448
+ query: {
449
+ Sorting: data.sorting,
450
+ SkipCount: data.skipCount,
451
+ MaxResultCount: data.maxResultCount
452
+ },
453
+ errors: {
454
+ 400: 'Bad Request',
455
+ 401: 'Unauthorized',
456
+ 403: 'Forbidden',
457
+ 404: 'Not Found',
458
+ 500: 'Server Error',
459
+ 501: 'Server Error'
460
+ }
461
+ });
462
+ }
463
+
464
+ /**
465
+ * @param data The data for the request.
466
+ * @param data.requestBody
467
+ * @returns unknown Success
468
+ * @throws ApiError
469
+ */
470
+ public putApiMerchantServiceEmailCommonDatas(data: PutApiMerchantServiceEmailCommonDatasData = {}): CancelablePromise<PutApiMerchantServiceEmailCommonDatasResponse> {
471
+ return this.httpRequest.request({
472
+ method: 'PUT',
473
+ url: '/api/merchant-service/email-common-datas',
474
+ body: data.requestBody,
475
+ mediaType: 'application/json',
476
+ errors: {
477
+ 400: 'Bad Request',
478
+ 401: 'Unauthorized',
479
+ 403: 'Forbidden',
480
+ 404: 'Not Found',
481
+ 500: 'Server Error',
482
+ 501: 'Server Error'
483
+ }
484
+ });
485
+ }
486
+
487
+ /**
488
+ * @param data The data for the request.
489
+ * @param data.id
490
+ * @returns unknown Success
491
+ * @throws ApiError
492
+ */
493
+ public deleteApiMerchantServiceEmailCommonDatas(data: DeleteApiMerchantServiceEmailCommonDatasData): CancelablePromise<DeleteApiMerchantServiceEmailCommonDatasResponse> {
494
+ return this.httpRequest.request({
495
+ method: 'DELETE',
496
+ url: '/api/merchant-service/email-common-datas',
497
+ query: {
498
+ id: data.id
499
+ },
500
+ errors: {
501
+ 400: 'Bad Request',
502
+ 401: 'Unauthorized',
503
+ 403: 'Forbidden',
504
+ 404: 'Not Found',
505
+ 500: 'Server Error',
506
+ 501: 'Server Error'
507
+ }
508
+ });
509
+ }
510
+
511
+ }
512
+
513
+ export class EntityInformationTypeService {
514
+ constructor(public readonly httpRequest: BaseHttpRequest) { }
515
+
516
+ /**
517
+ * @param data The data for the request.
518
+ * @param data.id
519
+ * @returns unknown Success
520
+ * @throws ApiError
521
+ */
522
+ public getApiMerchantServiceEntityInformationTypesDetailById(data: GetApiMerchantServiceEntityInformationTypesDetailByIdData): CancelablePromise<GetApiMerchantServiceEntityInformationTypesDetailByIdResponse> {
523
+ return this.httpRequest.request({
524
+ method: 'GET',
525
+ url: '/api/merchant-service/entity-information-types/detail/{id}',
526
+ path: {
527
+ id: data.id
528
+ },
529
+ errors: {
530
+ 400: 'Bad Request',
531
+ 401: 'Unauthorized',
532
+ 403: 'Forbidden',
533
+ 404: 'Not Found',
534
+ 500: 'Server Error',
535
+ 501: 'Server Error'
536
+ }
537
+ });
538
+ }
539
+
540
+ /**
541
+ * @param data The data for the request.
542
+ * @param data.skipCount
543
+ * @param data.maxResultCount
544
+ * @returns unknown Success
545
+ * @throws ApiError
546
+ */
547
+ public getApiMerchantServiceEntityInformationTypesDetail(data: GetApiMerchantServiceEntityInformationTypesDetailData = {}): CancelablePromise<GetApiMerchantServiceEntityInformationTypesDetailResponse> {
548
+ return this.httpRequest.request({
549
+ method: 'GET',
550
+ url: '/api/merchant-service/entity-information-types/detail',
551
+ query: {
552
+ SkipCount: data.skipCount,
553
+ MaxResultCount: data.maxResultCount
554
+ },
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.merchantId
569
+ * @param data.requestBody
570
+ * @returns unknown Success
571
+ * @throws ApiError
572
+ */
573
+ public postApiMerchantServiceEntityInformationTypes(data: PostApiMerchantServiceEntityInformationTypesData): CancelablePromise<PostApiMerchantServiceEntityInformationTypesResponse> {
574
+ return this.httpRequest.request({
575
+ method: 'POST',
576
+ url: '/api/merchant-service/entity-information-types',
577
+ query: {
578
+ merchantId: data.merchantId
579
+ },
580
+ body: data.requestBody,
581
+ mediaType: 'application/json',
582
+ errors: {
583
+ 400: 'Bad Request',
584
+ 401: 'Unauthorized',
585
+ 403: 'Forbidden',
586
+ 404: 'Not Found',
587
+ 500: 'Server Error',
588
+ 501: 'Server Error'
589
+ }
590
+ });
591
+ }
592
+
593
+ /**
594
+ * @param data The data for the request.
595
+ * @param data.requestBody
596
+ * @returns unknown Success
597
+ * @throws ApiError
598
+ */
599
+ public putApiMerchantServiceEntityInformationTypes(data: PutApiMerchantServiceEntityInformationTypesData = {}): CancelablePromise<PutApiMerchantServiceEntityInformationTypesResponse> {
600
+ return this.httpRequest.request({
601
+ method: 'PUT',
602
+ url: '/api/merchant-service/entity-information-types',
603
+ body: data.requestBody,
604
+ mediaType: 'application/json',
605
+ errors: {
606
+ 400: 'Bad Request',
607
+ 401: 'Unauthorized',
608
+ 403: 'Forbidden',
609
+ 404: 'Not Found',
610
+ 500: 'Server Error',
611
+ 501: 'Server Error'
612
+ }
613
+ });
614
+ }
615
+
616
+ /**
617
+ * @param data The data for the request.
618
+ * @param data.id
619
+ * @returns unknown Success
620
+ * @throws ApiError
621
+ */
622
+ public deleteApiMerchantServiceEntityInformationTypes(data: DeleteApiMerchantServiceEntityInformationTypesData): CancelablePromise<DeleteApiMerchantServiceEntityInformationTypesResponse> {
623
+ return this.httpRequest.request({
624
+ method: 'DELETE',
625
+ url: '/api/merchant-service/entity-information-types',
626
+ query: {
627
+ id: data.id
628
+ },
629
+ errors: {
630
+ 400: 'Bad Request',
631
+ 401: 'Unauthorized',
632
+ 403: 'Forbidden',
633
+ 404: 'Not Found',
634
+ 500: 'Server Error',
635
+ 501: 'Server Error'
636
+ }
637
+ });
638
+ }
639
+
640
+ }
641
+
642
+ export class IndividualService {
643
+ constructor(public readonly httpRequest: BaseHttpRequest) { }
644
+
645
+ /**
646
+ * @param data The data for the request.
647
+ * @param data.id
648
+ * @returns unknown Success
649
+ * @throws ApiError
650
+ */
651
+ public getApiMerchantServiceIndividualsDetailById(data: GetApiMerchantServiceIndividualsDetailByIdData): CancelablePromise<GetApiMerchantServiceIndividualsDetailByIdResponse> {
652
+ return this.httpRequest.request({
653
+ method: 'GET',
654
+ url: '/api/merchant-service/individuals/detail/{id}',
655
+ path: {
656
+ id: data.id
657
+ },
658
+ errors: {
659
+ 400: 'Bad Request',
660
+ 401: 'Unauthorized',
661
+ 403: 'Forbidden',
662
+ 404: 'Not Found',
663
+ 500: 'Server Error',
664
+ 501: 'Server Error'
665
+ }
666
+ });
667
+ }
668
+
669
+ /**
670
+ * @param data The data for the request.
671
+ * @param data.skipCount
672
+ * @param data.maxResultCount
673
+ * @returns unknown Success
674
+ * @throws ApiError
675
+ */
676
+ public getApiMerchantServiceIndividualsDetail(data: GetApiMerchantServiceIndividualsDetailData = {}): CancelablePromise<GetApiMerchantServiceIndividualsDetailResponse> {
677
+ return this.httpRequest.request({
678
+ method: 'GET',
679
+ url: '/api/merchant-service/individuals/detail',
680
+ query: {
681
+ SkipCount: data.skipCount,
682
+ MaxResultCount: data.maxResultCount
683
+ },
684
+ errors: {
685
+ 400: 'Bad Request',
686
+ 401: 'Unauthorized',
687
+ 403: 'Forbidden',
688
+ 404: 'Not Found',
689
+ 500: 'Server Error',
690
+ 501: 'Server Error'
691
+ }
692
+ });
693
+ }
694
+
695
+ /**
696
+ * @param data The data for the request.
697
+ * @param data.entityInformationTypeId
698
+ * @param data.requestBody
699
+ * @returns unknown Success
700
+ * @throws ApiError
701
+ */
702
+ public postApiMerchantServiceIndividuals(data: PostApiMerchantServiceIndividualsData): CancelablePromise<PostApiMerchantServiceIndividualsResponse> {
703
+ return this.httpRequest.request({
704
+ method: 'POST',
705
+ url: '/api/merchant-service/individuals',
706
+ query: {
707
+ entityInformationTypeId: data.entityInformationTypeId
708
+ },
709
+ body: data.requestBody,
710
+ mediaType: 'application/json',
711
+ errors: {
712
+ 400: 'Bad Request',
713
+ 401: 'Unauthorized',
714
+ 403: 'Forbidden',
715
+ 404: 'Not Found',
716
+ 500: 'Server Error',
717
+ 501: 'Server Error'
718
+ }
719
+ });
720
+ }
721
+
722
+ /**
723
+ * @param data The data for the request.
724
+ * @param data.requestBody
725
+ * @returns unknown Success
726
+ * @throws ApiError
727
+ */
728
+ public putApiMerchantServiceIndividuals(data: PutApiMerchantServiceIndividualsData = {}): CancelablePromise<PutApiMerchantServiceIndividualsResponse> {
729
+ return this.httpRequest.request({
730
+ method: 'PUT',
731
+ url: '/api/merchant-service/individuals',
732
+ body: data.requestBody,
733
+ mediaType: 'application/json',
734
+ errors: {
735
+ 400: 'Bad Request',
736
+ 401: 'Unauthorized',
737
+ 403: 'Forbidden',
738
+ 404: 'Not Found',
739
+ 500: 'Server Error',
740
+ 501: 'Server Error'
741
+ }
742
+ });
743
+ }
744
+
745
+ /**
746
+ * @param data The data for the request.
747
+ * @param data.id
748
+ * @returns unknown Success
749
+ * @throws ApiError
750
+ */
751
+ public deleteApiMerchantServiceIndividuals(data: DeleteApiMerchantServiceIndividualsData): CancelablePromise<DeleteApiMerchantServiceIndividualsResponse> {
752
+ return this.httpRequest.request({
753
+ method: 'DELETE',
754
+ url: '/api/merchant-service/individuals',
755
+ query: {
756
+ id: data.id
757
+ },
758
+ errors: {
759
+ 400: 'Bad Request',
760
+ 401: 'Unauthorized',
761
+ 403: 'Forbidden',
762
+ 404: 'Not Found',
763
+ 500: 'Server Error',
764
+ 501: 'Server Error'
765
+ }
766
+ });
767
+ }
768
+
769
+ }
770
+
771
+ export class MerchantService {
772
+ constructor(public readonly httpRequest: BaseHttpRequest) { }
773
+
774
+ /**
775
+ * @param data The data for the request.
776
+ * @param data.id
777
+ * @returns unknown Success
778
+ * @throws ApiError
779
+ */
780
+ public getApiMerchantServiceMerchantsDetailById(data: GetApiMerchantServiceMerchantsDetailByIdData): CancelablePromise<GetApiMerchantServiceMerchantsDetailByIdResponse> {
781
+ return this.httpRequest.request({
782
+ method: 'GET',
783
+ url: '/api/merchant-service/merchants/detail/{id}',
784
+ path: {
785
+ id: data.id
786
+ },
787
+ errors: {
788
+ 400: 'Bad Request',
789
+ 401: 'Unauthorized',
790
+ 403: 'Forbidden',
791
+ 404: 'Not Found',
792
+ 500: 'Server Error',
793
+ 501: 'Server Error'
794
+ }
795
+ });
796
+ }
797
+
798
+ /**
799
+ * @param data The data for the request.
800
+ * @param data.skipCount
801
+ * @param data.maxResultCount
802
+ * @returns unknown Success
803
+ * @throws ApiError
804
+ */
805
+ public getApiMerchantServiceMerchantsDetail(data: GetApiMerchantServiceMerchantsDetailData = {}): CancelablePromise<GetApiMerchantServiceMerchantsDetailResponse> {
806
+ return this.httpRequest.request({
807
+ method: 'GET',
808
+ url: '/api/merchant-service/merchants/detail',
809
+ query: {
810
+ SkipCount: data.skipCount,
811
+ MaxResultCount: data.maxResultCount
812
+ },
813
+ errors: {
814
+ 400: 'Bad Request',
815
+ 401: 'Unauthorized',
816
+ 403: 'Forbidden',
817
+ 404: 'Not Found',
818
+ 500: 'Server Error',
819
+ 501: 'Server Error'
820
+ }
821
+ });
822
+ }
823
+
824
+ /**
825
+ * @param data The data for the request.
826
+ * @param data.id
827
+ * @param data.requestBody
828
+ * @returns unknown Success
829
+ * @throws ApiError
830
+ */
831
+ public postApiMerchantServiceMerchantsTelephone(data: PostApiMerchantServiceMerchantsTelephoneData): CancelablePromise<PostApiMerchantServiceMerchantsTelephoneResponse> {
832
+ return this.httpRequest.request({
833
+ method: 'POST',
834
+ url: '/api/merchant-service/merchants/telephone',
835
+ query: {
836
+ id: data.id
837
+ },
838
+ body: data.requestBody,
839
+ mediaType: 'application/json',
840
+ errors: {
841
+ 400: 'Bad Request',
842
+ 401: 'Unauthorized',
843
+ 403: 'Forbidden',
844
+ 404: 'Not Found',
845
+ 500: 'Server Error',
846
+ 501: 'Server Error'
847
+ }
848
+ });
849
+ }
850
+
851
+ /**
852
+ * @param data The data for the request.
853
+ * @param data.id
854
+ * @param data.requestBody
855
+ * @returns unknown Success
856
+ * @throws ApiError
857
+ */
858
+ public postApiMerchantServiceMerchantsAddress(data: PostApiMerchantServiceMerchantsAddressData): CancelablePromise<PostApiMerchantServiceMerchantsAddressResponse> {
859
+ return this.httpRequest.request({
860
+ method: 'POST',
861
+ url: '/api/merchant-service/merchants/address',
862
+ query: {
863
+ id: data.id
864
+ },
865
+ body: data.requestBody,
866
+ mediaType: 'application/json',
867
+ errors: {
868
+ 400: 'Bad Request',
869
+ 401: 'Unauthorized',
870
+ 403: 'Forbidden',
871
+ 404: 'Not Found',
872
+ 500: 'Server Error',
873
+ 501: 'Server Error'
874
+ }
875
+ });
876
+ }
877
+
878
+ /**
879
+ * @param data The data for the request.
880
+ * @param data.id
881
+ * @param data.requestBody
882
+ * @returns unknown Success
883
+ * @throws ApiError
884
+ */
885
+ public postApiMerchantServiceMerchantsEmail(data: PostApiMerchantServiceMerchantsEmailData): CancelablePromise<PostApiMerchantServiceMerchantsEmailResponse> {
886
+ return this.httpRequest.request({
887
+ method: 'POST',
888
+ url: '/api/merchant-service/merchants/email',
889
+ query: {
890
+ id: data.id
891
+ },
892
+ body: data.requestBody,
893
+ mediaType: 'application/json',
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.requestBody
908
+ * @returns unknown Success
909
+ * @throws ApiError
910
+ */
911
+ public postApiMerchantServiceMerchantsWithComponents(data: PostApiMerchantServiceMerchantsWithComponentsData = {}): CancelablePromise<PostApiMerchantServiceMerchantsWithComponentsResponse> {
912
+ return this.httpRequest.request({
913
+ method: 'POST',
914
+ url: '/api/merchant-service/merchants/with-components',
915
+ body: data.requestBody,
916
+ mediaType: 'application/json',
917
+ errors: {
918
+ 400: 'Bad Request',
919
+ 401: 'Unauthorized',
920
+ 403: 'Forbidden',
921
+ 404: 'Not Found',
922
+ 500: 'Server Error',
923
+ 501: 'Server Error'
924
+ }
925
+ });
926
+ }
927
+
928
+ /**
929
+ * @param data The data for the request.
930
+ * @param data.requestBody
931
+ * @returns unknown Success
932
+ * @throws ApiError
933
+ */
934
+ public putApiMerchantServiceMerchantsWithComponents(data: PutApiMerchantServiceMerchantsWithComponentsData = {}): CancelablePromise<PutApiMerchantServiceMerchantsWithComponentsResponse> {
935
+ return this.httpRequest.request({
936
+ method: 'PUT',
937
+ url: '/api/merchant-service/merchants/with-components',
938
+ body: data.requestBody,
939
+ mediaType: 'application/json',
940
+ errors: {
941
+ 400: 'Bad Request',
942
+ 401: 'Unauthorized',
943
+ 403: 'Forbidden',
944
+ 404: 'Not Found',
945
+ 500: 'Server Error',
946
+ 501: 'Server Error'
947
+ }
948
+ });
949
+ }
950
+
951
+ /**
952
+ * @param data The data for the request.
953
+ * @param data.id
954
+ * @returns unknown Success
955
+ * @throws ApiError
956
+ */
957
+ public deleteApiMerchantServiceMerchantsWithComponents(data: DeleteApiMerchantServiceMerchantsWithComponentsData): CancelablePromise<DeleteApiMerchantServiceMerchantsWithComponentsResponse> {
958
+ return this.httpRequest.request({
959
+ method: 'DELETE',
960
+ url: '/api/merchant-service/merchants/with-components',
961
+ query: {
962
+ id: data.id
963
+ },
964
+ errors: {
965
+ 400: 'Bad Request',
966
+ 401: 'Unauthorized',
967
+ 403: 'Forbidden',
968
+ 404: 'Not Found',
969
+ 500: 'Server Error',
970
+ 501: 'Server Error'
971
+ }
972
+ });
973
+ }
974
+
975
+ }
976
+
977
+ export class NameCommonDataService {
978
+ constructor(public readonly httpRequest: BaseHttpRequest) { }
979
+
980
+ /**
981
+ * @param data The data for the request.
982
+ * @param data.id
983
+ * @returns unknown Success
984
+ * @throws ApiError
985
+ */
986
+ public getApiMerchantServiceNameCommonDatasById(data: GetApiMerchantServiceNameCommonDatasByIdData): CancelablePromise<GetApiMerchantServiceNameCommonDatasByIdResponse> {
987
+ return this.httpRequest.request({
988
+ method: 'GET',
989
+ url: '/api/merchant-service/name-common-datas/{id}',
990
+ path: {
991
+ id: data.id
992
+ },
993
+ errors: {
994
+ 400: 'Bad Request',
995
+ 401: 'Unauthorized',
996
+ 403: 'Forbidden',
997
+ 404: 'Not Found',
998
+ 500: 'Server Error',
999
+ 501: 'Server Error'
1000
+ }
1001
+ });
1002
+ }
1003
+
1004
+ /**
1005
+ * @param data The data for the request.
1006
+ * @param data.sorting
1007
+ * @param data.skipCount
1008
+ * @param data.maxResultCount
1009
+ * @returns unknown Success
1010
+ * @throws ApiError
1011
+ */
1012
+ public getApiMerchantServiceNameCommonDatas(data: GetApiMerchantServiceNameCommonDatasData = {}): CancelablePromise<GetApiMerchantServiceNameCommonDatasResponse> {
1013
+ return this.httpRequest.request({
1014
+ method: 'GET',
1015
+ url: '/api/merchant-service/name-common-datas',
1016
+ query: {
1017
+ Sorting: data.sorting,
1018
+ SkipCount: data.skipCount,
1019
+ MaxResultCount: data.maxResultCount
1020
+ },
1021
+ errors: {
1022
+ 400: 'Bad Request',
1023
+ 401: 'Unauthorized',
1024
+ 403: 'Forbidden',
1025
+ 404: 'Not Found',
1026
+ 500: 'Server Error',
1027
+ 501: 'Server Error'
1028
+ }
1029
+ });
1030
+ }
1031
+
1032
+ /**
1033
+ * @param data The data for the request.
1034
+ * @param data.requestBody
1035
+ * @returns unknown Success
1036
+ * @throws ApiError
1037
+ */
1038
+ public putApiMerchantServiceNameCommonDatas(data: PutApiMerchantServiceNameCommonDatasData = {}): CancelablePromise<PutApiMerchantServiceNameCommonDatasResponse> {
1039
+ return this.httpRequest.request({
1040
+ method: 'PUT',
1041
+ url: '/api/merchant-service/name-common-datas',
1042
+ body: data.requestBody,
1043
+ mediaType: 'application/json',
1044
+ errors: {
1045
+ 400: 'Bad Request',
1046
+ 401: 'Unauthorized',
1047
+ 403: 'Forbidden',
1048
+ 404: 'Not Found',
1049
+ 500: 'Server Error',
1050
+ 501: 'Server Error'
1051
+ }
1052
+ });
1053
+ }
1054
+
1055
+ /**
1056
+ * @param data The data for the request.
1057
+ * @param data.id
1058
+ * @returns unknown Success
1059
+ * @throws ApiError
1060
+ */
1061
+ public deleteApiMerchantServiceNameCommonDatas(data: DeleteApiMerchantServiceNameCommonDatasData): CancelablePromise<DeleteApiMerchantServiceNameCommonDatasResponse> {
1062
+ return this.httpRequest.request({
1063
+ method: 'DELETE',
1064
+ url: '/api/merchant-service/name-common-datas',
1065
+ query: {
1066
+ id: data.id
1067
+ },
1068
+ errors: {
1069
+ 400: 'Bad Request',
1070
+ 401: 'Unauthorized',
1071
+ 403: 'Forbidden',
1072
+ 404: 'Not Found',
1073
+ 500: 'Server Error',
1074
+ 501: 'Server Error'
1075
+ }
1076
+ });
1077
+ }
1078
+
1079
+ }
1080
+
1081
+ export class OrganizationService {
1082
+ constructor(public readonly httpRequest: BaseHttpRequest) { }
1083
+
1084
+ /**
1085
+ * @param data The data for the request.
1086
+ * @param data.id
1087
+ * @returns unknown Success
1088
+ * @throws ApiError
1089
+ */
1090
+ public getApiMerchantServiceOrganizationsDetailById(data: GetApiMerchantServiceOrganizationsDetailByIdData): CancelablePromise<GetApiMerchantServiceOrganizationsDetailByIdResponse> {
1091
+ return this.httpRequest.request({
1092
+ method: 'GET',
1093
+ url: '/api/merchant-service/organizations/detail/{id}',
1094
+ path: {
1095
+ id: data.id
1096
+ },
1097
+ errors: {
1098
+ 400: 'Bad Request',
1099
+ 401: 'Unauthorized',
1100
+ 403: 'Forbidden',
1101
+ 404: 'Not Found',
1102
+ 500: 'Server Error',
1103
+ 501: 'Server Error'
1104
+ }
1105
+ });
1106
+ }
1107
+
1108
+ /**
1109
+ * @param data The data for the request.
1110
+ * @param data.skipCount
1111
+ * @param data.maxResultCount
1112
+ * @returns unknown Success
1113
+ * @throws ApiError
1114
+ */
1115
+ public getApiMerchantServiceOrganizationsDetail(data: GetApiMerchantServiceOrganizationsDetailData = {}): CancelablePromise<GetApiMerchantServiceOrganizationsDetailResponse> {
1116
+ return this.httpRequest.request({
1117
+ method: 'GET',
1118
+ url: '/api/merchant-service/organizations/detail',
1119
+ query: {
1120
+ SkipCount: data.skipCount,
1121
+ MaxResultCount: data.maxResultCount
1122
+ },
1123
+ errors: {
1124
+ 400: 'Bad Request',
1125
+ 401: 'Unauthorized',
1126
+ 403: 'Forbidden',
1127
+ 404: 'Not Found',
1128
+ 500: 'Server Error',
1129
+ 501: 'Server Error'
1130
+ }
1131
+ });
1132
+ }
1133
+
1134
+ /**
1135
+ * @param data The data for the request.
1136
+ * @param data.entityInformationTypeId
1137
+ * @param data.requestBody
1138
+ * @returns unknown Success
1139
+ * @throws ApiError
1140
+ */
1141
+ public postApiMerchantServiceOrganizations(data: PostApiMerchantServiceOrganizationsData): CancelablePromise<PostApiMerchantServiceOrganizationsResponse> {
1142
+ return this.httpRequest.request({
1143
+ method: 'POST',
1144
+ url: '/api/merchant-service/organizations',
1145
+ query: {
1146
+ entityInformationTypeId: data.entityInformationTypeId
1147
+ },
1148
+ body: data.requestBody,
1149
+ mediaType: 'application/json',
1150
+ errors: {
1151
+ 400: 'Bad Request',
1152
+ 401: 'Unauthorized',
1153
+ 403: 'Forbidden',
1154
+ 404: 'Not Found',
1155
+ 500: 'Server Error',
1156
+ 501: 'Server Error'
1157
+ }
1158
+ });
1159
+ }
1160
+
1161
+ /**
1162
+ * @param data The data for the request.
1163
+ * @param data.requestBody
1164
+ * @returns unknown Success
1165
+ * @throws ApiError
1166
+ */
1167
+ public putApiMerchantServiceOrganizations(data: PutApiMerchantServiceOrganizationsData = {}): CancelablePromise<PutApiMerchantServiceOrganizationsResponse> {
1168
+ return this.httpRequest.request({
1169
+ method: 'PUT',
1170
+ url: '/api/merchant-service/organizations',
1171
+ body: data.requestBody,
1172
+ mediaType: 'application/json',
1173
+ errors: {
1174
+ 400: 'Bad Request',
1175
+ 401: 'Unauthorized',
1176
+ 403: 'Forbidden',
1177
+ 404: 'Not Found',
1178
+ 500: 'Server Error',
1179
+ 501: 'Server Error'
1180
+ }
1181
+ });
1182
+ }
1183
+
1184
+ /**
1185
+ * @param data The data for the request.
1186
+ * @param data.id
1187
+ * @param data.includeSubCompanies
1188
+ * @returns unknown Success
1189
+ * @throws ApiError
1190
+ */
1191
+ public deleteApiMerchantServiceOrganizations(data: DeleteApiMerchantServiceOrganizationsData): CancelablePromise<DeleteApiMerchantServiceOrganizationsResponse> {
1192
+ return this.httpRequest.request({
1193
+ method: 'DELETE',
1194
+ url: '/api/merchant-service/organizations',
1195
+ query: {
1196
+ id: data.id,
1197
+ includeSubCompanies: data.includeSubCompanies
1198
+ },
1199
+ errors: {
1200
+ 400: 'Bad Request',
1201
+ 401: 'Unauthorized',
1202
+ 403: 'Forbidden',
1203
+ 404: 'Not Found',
1204
+ 500: 'Server Error',
1205
+ 501: 'Server Error'
1206
+ }
1207
+ });
1208
+ }
1209
+
1210
+ /**
1211
+ * @param data The data for the request.
1212
+ * @param data.parentOrganizationId
1213
+ * @param data.requestBody
1214
+ * @returns unknown Success
1215
+ * @throws ApiError
1216
+ */
1217
+ public postApiMerchantServiceOrganizationsSubOrganization(data: PostApiMerchantServiceOrganizationsSubOrganizationData): CancelablePromise<PostApiMerchantServiceOrganizationsSubOrganizationResponse> {
1218
+ return this.httpRequest.request({
1219
+ method: 'POST',
1220
+ url: '/api/merchant-service/organizations/sub-organization',
1221
+ query: {
1222
+ parentOrganizationId: data.parentOrganizationId
1223
+ },
1224
+ body: data.requestBody,
1225
+ mediaType: 'application/json',
1226
+ errors: {
1227
+ 400: 'Bad Request',
1228
+ 401: 'Unauthorized',
1229
+ 403: 'Forbidden',
1230
+ 404: 'Not Found',
1231
+ 500: 'Server Error',
1232
+ 501: 'Server Error'
1233
+ }
1234
+ });
1235
+ }
1236
+
1237
+ }
1238
+
1239
+ export class PersonalSummaryService {
1240
+ constructor(public readonly httpRequest: BaseHttpRequest) { }
1241
+
1242
+ /**
1243
+ * @param data The data for the request.
1244
+ * @param data.id
1245
+ * @returns unknown Success
1246
+ * @throws ApiError
1247
+ */
1248
+ public getApiMerchantServicePersonalSummariesById(data: GetApiMerchantServicePersonalSummariesByIdData): CancelablePromise<GetApiMerchantServicePersonalSummariesByIdResponse> {
1249
+ return this.httpRequest.request({
1250
+ method: 'GET',
1251
+ url: '/api/merchant-service/personal-summaries/{id}',
1252
+ path: {
1253
+ id: data.id
1254
+ },
1255
+ errors: {
1256
+ 400: 'Bad Request',
1257
+ 401: 'Unauthorized',
1258
+ 403: 'Forbidden',
1259
+ 404: 'Not Found',
1260
+ 500: 'Server Error',
1261
+ 501: 'Server Error'
1262
+ }
1263
+ });
1264
+ }
1265
+
1266
+ /**
1267
+ * @param data The data for the request.
1268
+ * @param data.sorting
1269
+ * @param data.skipCount
1270
+ * @param data.maxResultCount
1271
+ * @returns unknown Success
1272
+ * @throws ApiError
1273
+ */
1274
+ public getApiMerchantServicePersonalSummaries(data: GetApiMerchantServicePersonalSummariesData = {}): CancelablePromise<GetApiMerchantServicePersonalSummariesResponse> {
1275
+ return this.httpRequest.request({
1276
+ method: 'GET',
1277
+ url: '/api/merchant-service/personal-summaries',
1278
+ query: {
1279
+ Sorting: data.sorting,
1280
+ SkipCount: data.skipCount,
1281
+ MaxResultCount: data.maxResultCount
1282
+ },
1283
+ errors: {
1284
+ 400: 'Bad Request',
1285
+ 401: 'Unauthorized',
1286
+ 403: 'Forbidden',
1287
+ 404: 'Not Found',
1288
+ 500: 'Server Error',
1289
+ 501: 'Server Error'
1290
+ }
1291
+ });
1292
+ }
1293
+
1294
+ /**
1295
+ * @param data The data for the request.
1296
+ * @param data.individualId
1297
+ * @param data.requestBody
1298
+ * @returns unknown Success
1299
+ * @throws ApiError
1300
+ */
1301
+ public postApiMerchantServicePersonalSummaries(data: PostApiMerchantServicePersonalSummariesData): CancelablePromise<PostApiMerchantServicePersonalSummariesResponse> {
1302
+ return this.httpRequest.request({
1303
+ method: 'POST',
1304
+ url: '/api/merchant-service/personal-summaries',
1305
+ query: {
1306
+ individualId: data.individualId
1307
+ },
1308
+ body: data.requestBody,
1309
+ mediaType: 'application/json',
1310
+ errors: {
1311
+ 400: 'Bad Request',
1312
+ 401: 'Unauthorized',
1313
+ 403: 'Forbidden',
1314
+ 404: 'Not Found',
1315
+ 500: 'Server Error',
1316
+ 501: 'Server Error'
1317
+ }
1318
+ });
1319
+ }
1320
+
1321
+ /**
1322
+ * @param data The data for the request.
1323
+ * @param data.requestBody
1324
+ * @returns unknown Success
1325
+ * @throws ApiError
1326
+ */
1327
+ public putApiMerchantServicePersonalSummaries(data: PutApiMerchantServicePersonalSummariesData = {}): CancelablePromise<PutApiMerchantServicePersonalSummariesResponse> {
1328
+ return this.httpRequest.request({
1329
+ method: 'PUT',
1330
+ url: '/api/merchant-service/personal-summaries',
1331
+ body: data.requestBody,
1332
+ mediaType: 'application/json',
1333
+ errors: {
1334
+ 400: 'Bad Request',
1335
+ 401: 'Unauthorized',
1336
+ 403: 'Forbidden',
1337
+ 404: 'Not Found',
1338
+ 500: 'Server Error',
1339
+ 501: 'Server Error'
1340
+ }
1341
+ });
1342
+ }
1343
+
1344
+ /**
1345
+ * @param data The data for the request.
1346
+ * @param data.id
1347
+ * @returns unknown Success
1348
+ * @throws ApiError
1349
+ */
1350
+ public deleteApiMerchantServicePersonalSummaries(data: DeleteApiMerchantServicePersonalSummariesData): CancelablePromise<DeleteApiMerchantServicePersonalSummariesResponse> {
1351
+ return this.httpRequest.request({
1352
+ method: 'DELETE',
1353
+ url: '/api/merchant-service/personal-summaries',
1354
+ query: {
1355
+ id: data.id
1356
+ },
1357
+ errors: {
1358
+ 400: 'Bad Request',
1359
+ 401: 'Unauthorized',
1360
+ 403: 'Forbidden',
1361
+ 404: 'Not Found',
1362
+ 500: 'Server Error',
1363
+ 501: 'Server Error'
1364
+ }
1365
+ });
1366
+ }
1367
+
1368
+ }
1369
+
1370
+ export class ProductGroupService {
1371
+ constructor(public readonly httpRequest: BaseHttpRequest) { }
1372
+
1373
+ /**
1374
+ * @param data The data for the request.
1375
+ * @param data.id
1376
+ * @returns unknown Success
1377
+ * @throws ApiError
1378
+ */
1379
+ public getApiMerchantServiceProductGroupsById(data: GetApiMerchantServiceProductGroupsByIdData): CancelablePromise<GetApiMerchantServiceProductGroupsByIdResponse> {
1380
+ return this.httpRequest.request({
1381
+ method: 'GET',
1382
+ url: '/api/merchant-service/product-groups/{id}',
1383
+ path: {
1384
+ id: data.id
1385
+ },
1386
+ errors: {
1387
+ 400: 'Bad Request',
1388
+ 401: 'Unauthorized',
1389
+ 403: 'Forbidden',
1390
+ 404: 'Not Found',
1391
+ 500: 'Server Error',
1392
+ 501: 'Server Error'
1393
+ }
1394
+ });
1395
+ }
1396
+
1397
+ /**
1398
+ * @param data The data for the request.
1399
+ * @param data.sorting
1400
+ * @param data.skipCount
1401
+ * @param data.maxResultCount
1402
+ * @returns unknown Success
1403
+ * @throws ApiError
1404
+ */
1405
+ public getApiMerchantServiceProductGroups(data: GetApiMerchantServiceProductGroupsData = {}): CancelablePromise<GetApiMerchantServiceProductGroupsResponse> {
1406
+ return this.httpRequest.request({
1407
+ method: 'GET',
1408
+ url: '/api/merchant-service/product-groups',
1409
+ query: {
1410
+ Sorting: data.sorting,
1411
+ SkipCount: data.skipCount,
1412
+ MaxResultCount: data.maxResultCount
1413
+ },
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.organizationId
1428
+ * @param data.requestBody
1429
+ * @returns unknown Success
1430
+ * @throws ApiError
1431
+ */
1432
+ public postApiMerchantServiceProductGroups(data: PostApiMerchantServiceProductGroupsData): CancelablePromise<PostApiMerchantServiceProductGroupsResponse> {
1433
+ return this.httpRequest.request({
1434
+ method: 'POST',
1435
+ url: '/api/merchant-service/product-groups',
1436
+ query: {
1437
+ organizationId: data.organizationId
1438
+ },
1439
+ body: data.requestBody,
1440
+ mediaType: 'application/json',
1441
+ errors: {
1442
+ 400: 'Bad Request',
1443
+ 401: 'Unauthorized',
1444
+ 403: 'Forbidden',
1445
+ 404: 'Not Found',
1446
+ 500: 'Server Error',
1447
+ 501: 'Server Error'
1448
+ }
1449
+ });
1450
+ }
1451
+
1452
+ /**
1453
+ * @param data The data for the request.
1454
+ * @param data.requestBody
1455
+ * @returns unknown Success
1456
+ * @throws ApiError
1457
+ */
1458
+ public putApiMerchantServiceProductGroups(data: PutApiMerchantServiceProductGroupsData = {}): CancelablePromise<PutApiMerchantServiceProductGroupsResponse> {
1459
+ return this.httpRequest.request({
1460
+ method: 'PUT',
1461
+ url: '/api/merchant-service/product-groups',
1462
+ body: data.requestBody,
1463
+ mediaType: 'application/json',
1464
+ errors: {
1465
+ 400: 'Bad Request',
1466
+ 401: 'Unauthorized',
1467
+ 403: 'Forbidden',
1468
+ 404: 'Not Found',
1469
+ 500: 'Server Error',
1470
+ 501: 'Server Error'
1471
+ }
1472
+ });
1473
+ }
1474
+
1475
+ /**
1476
+ * @param data The data for the request.
1477
+ * @param data.id
1478
+ * @returns unknown Success
1479
+ * @throws ApiError
1480
+ */
1481
+ public deleteApiMerchantServiceProductGroups(data: DeleteApiMerchantServiceProductGroupsData): CancelablePromise<DeleteApiMerchantServiceProductGroupsResponse> {
1482
+ return this.httpRequest.request({
1483
+ method: 'DELETE',
1484
+ url: '/api/merchant-service/product-groups',
1485
+ query: {
1486
+ id: data.id
1487
+ },
1488
+ errors: {
1489
+ 400: 'Bad Request',
1490
+ 401: 'Unauthorized',
1491
+ 403: 'Forbidden',
1492
+ 404: 'Not Found',
1493
+ 500: 'Server Error',
1494
+ 501: 'Server Error'
1495
+ }
1496
+ });
1497
+ }
1498
+
1499
+ }
1500
+
1501
+ export class TelephoneTypeService {
1502
+ constructor(public readonly httpRequest: BaseHttpRequest) { }
1503
+
1504
+ /**
1505
+ * @param data The data for the request.
1506
+ * @param data.id
1507
+ * @returns unknown Success
1508
+ * @throws ApiError
1509
+ */
1510
+ public getApiMerchantServiceTelephoneTypesById(data: GetApiMerchantServiceTelephoneTypesByIdData): CancelablePromise<GetApiMerchantServiceTelephoneTypesByIdResponse> {
1511
+ return this.httpRequest.request({
1512
+ method: 'GET',
1513
+ url: '/api/merchant-service/telephone-types/{id}',
1514
+ path: {
1515
+ id: data.id
1516
+ },
1517
+ errors: {
1518
+ 400: 'Bad Request',
1519
+ 401: 'Unauthorized',
1520
+ 403: 'Forbidden',
1521
+ 404: 'Not Found',
1522
+ 500: 'Server Error',
1523
+ 501: 'Server Error'
1524
+ }
1525
+ });
1526
+ }
1527
+
1528
+ /**
1529
+ * @param data The data for the request.
1530
+ * @param data.sorting
1531
+ * @param data.skipCount
1532
+ * @param data.maxResultCount
1533
+ * @returns unknown Success
1534
+ * @throws ApiError
1535
+ */
1536
+ public getApiMerchantServiceTelephoneTypes(data: GetApiMerchantServiceTelephoneTypesData = {}): CancelablePromise<GetApiMerchantServiceTelephoneTypesResponse> {
1537
+ return this.httpRequest.request({
1538
+ method: 'GET',
1539
+ url: '/api/merchant-service/telephone-types',
1540
+ query: {
1541
+ Sorting: data.sorting,
1542
+ SkipCount: data.skipCount,
1543
+ MaxResultCount: data.maxResultCount
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.requestBody
1559
+ * @returns unknown Success
1560
+ * @throws ApiError
1561
+ */
1562
+ public putApiMerchantServiceTelephoneTypes(data: PutApiMerchantServiceTelephoneTypesData = {}): CancelablePromise<PutApiMerchantServiceTelephoneTypesResponse> {
1563
+ return this.httpRequest.request({
1564
+ method: 'PUT',
1565
+ url: '/api/merchant-service/telephone-types',
1566
+ body: data.requestBody,
1567
+ mediaType: 'application/json',
1568
+ errors: {
1569
+ 400: 'Bad Request',
1570
+ 401: 'Unauthorized',
1571
+ 403: 'Forbidden',
1572
+ 404: 'Not Found',
1573
+ 500: 'Server Error',
1574
+ 501: 'Server Error'
1575
+ }
1576
+ });
1577
+ }
1578
+
1579
+ /**
1580
+ * @param data The data for the request.
1581
+ * @param data.id
1582
+ * @returns unknown Success
1583
+ * @throws ApiError
1584
+ */
1585
+ public deleteApiMerchantServiceTelephoneTypes(data: DeleteApiMerchantServiceTelephoneTypesData): CancelablePromise<DeleteApiMerchantServiceTelephoneTypesResponse> {
1586
+ return this.httpRequest.request({
1587
+ method: 'DELETE',
1588
+ url: '/api/merchant-service/telephone-types',
1589
+ query: {
1590
+ id: data.id
1591
+ },
1592
+ errors: {
1593
+ 400: 'Bad Request',
1594
+ 401: 'Unauthorized',
1595
+ 403: 'Forbidden',
1596
+ 404: 'Not Found',
1597
+ 500: 'Server Error',
1598
+ 501: 'Server Error'
1599
+ }
1600
+ });
1601
+ }
1602
+
1603
1603
  }