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