@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,2221 +1,2221 @@
1
- // This file is auto-generated by @hey-api/openapi-ts
2
-
3
- export type PagedResultDto_AddressTypeDto = {
4
- items?: Array<UniRefund_TravellerService_AddressTypes_AddressTypeDto> | null;
5
- totalCount?: number;
6
- };
7
-
8
- export type PagedResultDto_EmailCommonDataDto = {
9
- items?: Array<UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto> | null;
10
- totalCount?: number;
11
- };
12
-
13
- export type PagedResultDto_IndividualProfileDto = {
14
- items?: Array<UniRefund_TravellerService_Individuals_IndividualProfileDto> | null;
15
- totalCount?: number;
16
- };
17
-
18
- export type PagedResultDto_TelephoneTypeDto = {
19
- items?: Array<UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto> | null;
20
- totalCount?: number;
21
- };
22
-
23
- export type PagedResultDto_TravellerListProfileDto = {
24
- items?: Array<UniRefund_TravellerService_Travellers_TravellerListProfileDto> | null;
25
- totalCount?: number;
26
- };
27
-
28
- export type UniRefund_TravellerService_AddressTypes_AddressTypeDto = {
29
- id?: string;
30
- creationTime?: string;
31
- creatorId?: string | null;
32
- lastModificationTime?: string | null;
33
- lastModifierId?: string | null;
34
- isDeleted?: boolean;
35
- deleterId?: string | null;
36
- deletionTime?: string | null;
37
- addressLine?: string | null;
38
- city?: string | null;
39
- terriority?: string | null;
40
- postalCode?: string | null;
41
- country?: string | null;
42
- fullAddress?: string | null;
43
- typeCode?: UniRefund_TravellerService_Enums_AddressTypeCode;
44
- primaryFlag?: boolean;
45
- contactInformationTypeId?: string;
46
- };
47
-
48
- export type UniRefund_TravellerService_AddressTypes_CreateAddressTypeDto = {
49
- readonly extraProperties?: {
50
- [key: string]: unknown;
51
- } | null;
52
- addressLine: string;
53
- city: string;
54
- terriority: string;
55
- postalCode: string;
56
- country: string;
57
- fullAddress: string;
58
- primaryFlag: boolean;
59
- typeCode: UniRefund_TravellerService_Enums_AddressTypeCode;
60
- contactInformationTypeId?: string;
61
- };
62
-
63
- export type UniRefund_TravellerService_AddressTypes_CreateAddressTypeWithComponentsDto = {
64
- readonly extraProperties?: {
65
- [key: string]: unknown;
66
- } | null;
67
- addressLine: string;
68
- city: string;
69
- terriority: string;
70
- postalCode: string;
71
- country: string;
72
- fullAddress: string;
73
- primaryFlag: boolean;
74
- typeCode: UniRefund_TravellerService_Enums_AddressTypeCode;
75
- };
76
-
77
- export type UniRefund_TravellerService_AddressTypes_UpdateAddressTypeDto = {
78
- readonly extraProperties?: {
79
- [key: string]: unknown;
80
- } | null;
81
- id: string;
82
- addressLine: string;
83
- city: string;
84
- terriority: string;
85
- postalCode: string;
86
- country: string;
87
- fullAddress: string;
88
- primaryFlag: boolean;
89
- typeCode: UniRefund_TravellerService_Enums_AddressTypeCode;
90
- };
91
-
92
- export type UniRefund_TravellerService_ContactInformationTypes_CreateContactInformationTypeDto = {
93
- readonly extraProperties?: {
94
- [key: string]: unknown;
95
- } | null;
96
- telephones?: Array<UniRefund_TravellerService_TelephoneTypes_CreateTelephoneTypeWithComponentsDto> | null;
97
- addresses?: Array<UniRefund_TravellerService_AddressTypes_CreateAddressTypeWithComponentsDto> | null;
98
- emails?: Array<UniRefund_TravellerService_EmailCommonDatas_CreateEmailCommonDataWithComponentsDto> | null;
99
- };
100
-
101
- export type UniRefund_TravellerService_EmailCommonDatas_CreateEmailCommonDataDto = {
102
- readonly extraProperties?: {
103
- [key: string]: unknown;
104
- } | null;
105
- emailAddress: string;
106
- primaryFlag: boolean;
107
- typeCode: UniRefund_TravellerService_Enums_EmailTypeCode;
108
- contactInformationTypeId: string;
109
- };
110
-
111
- export type UniRefund_TravellerService_EmailCommonDatas_CreateEmailCommonDataWithComponentsDto = {
112
- readonly extraProperties?: {
113
- [key: string]: unknown;
114
- } | null;
115
- emailAddress: string;
116
- primaryFlag: boolean;
117
- typeCode: UniRefund_TravellerService_Enums_EmailTypeCode;
118
- };
119
-
120
- export type UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto = {
121
- id?: string;
122
- creationTime?: string;
123
- creatorId?: string | null;
124
- lastModificationTime?: string | null;
125
- lastModifierId?: string | null;
126
- isDeleted?: boolean;
127
- deleterId?: string | null;
128
- deletionTime?: string | null;
129
- primaryFlag?: boolean;
130
- typeCode?: UniRefund_TravellerService_Enums_EmailTypeCode;
131
- emailAddress?: string | null;
132
- contactInformationTypeId?: string;
133
- };
134
-
135
- export type UniRefund_TravellerService_EmailCommonDatas_UpdateEmailCommonDataDto = {
136
- readonly extraProperties?: {
137
- [key: string]: unknown;
138
- } | null;
139
- id: string;
140
- emailAddress: string;
141
- primaryFlag: boolean;
142
- typeCode: UniRefund_TravellerService_Enums_EmailTypeCode;
143
- };
144
-
145
- export type UniRefund_TravellerService_EntityInformationTypes_CreateEntityInformationTypeDto = {
146
- readonly extraProperties?: {
147
- [key: string]: unknown;
148
- } | null;
149
- individuals?: Array<UniRefund_TravellerService_Individuals_CreateIndividualDto> | null;
150
- };
151
-
152
- export type UniRefund_TravellerService_Enums_AddressTypeCode = 'HOME' | 'OFFICE';
153
-
154
- export type UniRefund_TravellerService_Enums_AffiliationTypeCode = 'COFOUNDER' | 'PARTNER' | 'ABPUSER';
155
-
156
- export type UniRefund_TravellerService_Enums_EmailTypeCode = 'WORK' | 'PERSONAL';
157
-
158
- export type UniRefund_TravellerService_Enums_EntityPartyTypeCode = 'TRAVELLER';
159
-
160
- export type UniRefund_TravellerService_Enums_GenderTypeCode = 'MALE' | 'FEMALE';
161
-
162
- export type UniRefund_TravellerService_Enums_PersonalIdentificationTypeCode = 'Passport';
163
-
164
- export type UniRefund_TravellerService_Enums_TelephoneTypeCode = 'HOME' | 'OFFICE' | 'MOBILE' | 'FAX';
165
-
166
- export type UniRefund_TravellerService_Individuals_CreateIndividualDto = {
167
- readonly extraProperties?: {
168
- [key: string]: unknown;
169
- } | null;
170
- name?: UniRefund_TravellerService_NameCommonDatas_CreateNameCommonDataDto;
171
- personalSummaries?: Array<UniRefund_TravellerService_PersonalSummaries_CreatePersonalSummaryDto> | null;
172
- contactInformations?: Array<UniRefund_TravellerService_ContactInformationTypes_CreateContactInformationTypeDto> | null;
173
- };
174
-
175
- export type UniRefund_TravellerService_Individuals_IndividualProfileDto = {
176
- id?: string;
177
- name?: string | null;
178
- affiliationId?: string | null;
179
- affiliatedName?: string | null;
180
- affiliationTypeCode?: UniRefund_TravellerService_Enums_AffiliationTypeCode;
181
- affiliationTypeCodeValue?: string | null;
182
- affiliationParentTypeCode?: UniRefund_TravellerService_Enums_EntityPartyTypeCode;
183
- affiliationParentTypeCodeValue?: string | null;
184
- };
185
-
186
- export type UniRefund_TravellerService_NameCommonDatas_CreateNameCommonDataDto = {
187
- firstName: string;
188
- lastName: string;
189
- };
190
-
191
- export type UniRefund_TravellerService_PersonalIdentificationCommonDatas_CreatePersonalIdentificationCommonDataDto = {
192
- firstName: string;
193
- middleName?: string | null;
194
- lastName: string;
195
- travelDocumentNumber: string;
196
- birthDate?: string | null;
197
- issueDate?: string | null;
198
- expirationDate?: string | null;
199
- residenceCountryCode2: string;
200
- nationalityCountryCode2: string;
201
- identificationType?: UniRefund_TravellerService_Enums_PersonalIdentificationTypeCode;
202
- };
203
-
204
- export type UniRefund_TravellerService_PersonalIdentificationCommonDatas_CreatePersonalIdentificationDto = {
205
- travelDocumentNumber: string;
206
- birthDate?: string | null;
207
- firstName: string;
208
- middleName?: string | null;
209
- lastName: string;
210
- issueDate?: string | null;
211
- expirationDate: string;
212
- residenceCountryCode2: string;
213
- nationalityCountryCode2: string;
214
- identificationType: UniRefund_TravellerService_Enums_PersonalIdentificationTypeCode;
215
- };
216
-
217
- export type UniRefund_TravellerService_PersonalIdentificationCommonDatas_CreatePersonalIdentificationResponseDto = {
218
- id: string;
219
- travellerId: string;
220
- };
221
-
222
- export type UniRefund_TravellerService_PersonalIdentificationCommonDatas_PersonalIdentificationProfileDto = {
223
- id: string;
224
- travelDocumentNumber: string;
225
- residenceCountryCode2: string;
226
- residenceCountryName: string;
227
- nationalityCountryCode2: string;
228
- nationalityCountryName: string;
229
- firstName: string;
230
- middleName?: string | null;
231
- lastName: string;
232
- readonly fullName: string;
233
- birthDate?: string | null;
234
- issueDate?: string | null;
235
- expirationDate: string;
236
- identificationType: UniRefund_TravellerService_Enums_PersonalIdentificationTypeCode;
237
- };
238
-
239
- export type UniRefund_TravellerService_PersonalIdentificationCommonDatas_UpdatePersonalIdentificationDto = {
240
- id?: string | null;
241
- travelDocumentNumber?: string | null;
242
- birthDate?: string | null;
243
- firstName?: string | null;
244
- middleName?: string | null;
245
- lastName?: string | null;
246
- issueDate?: string | null;
247
- expirationDate: string;
248
- residenceCountryCode2?: string | null;
249
- nationalityCountryCode2?: string | null;
250
- identificationType?: UniRefund_TravellerService_Enums_PersonalIdentificationTypeCode;
251
- };
252
-
253
- export type UniRefund_TravellerService_PersonalIdentificationCommonDatas_UpdatePersonalIdentificationResponseDto = {
254
- id: string;
255
- travellerId: string;
256
- };
257
-
258
- export type UniRefund_TravellerService_PersonalPreferencesTypes_CreatePersonalPreferencesTypeDto = {
259
- languagePreferenceCode?: string | null;
260
- };
261
-
262
- export type UniRefund_TravellerService_PersonalPreferencesTypes_UpsertPersonalPreferenceDto = {
263
- languagePreferenceCode: string;
264
- };
265
-
266
- export type UniRefund_TravellerService_PersonalPreferencesTypes_UpsertPersonalPreferenceResponseDto = {
267
- id: string;
268
- travellerId: string;
269
- };
270
-
271
- export type UniRefund_TravellerService_PersonalSummaries_CreatePersonalSummaryDto = {
272
- readonly extraProperties?: {
273
- [key: string]: unknown;
274
- } | null;
275
- date: string;
276
- birthDate: string;
277
- ethnicity: string;
278
- maritalStatusCode: string;
279
- religiousAffiliationName: string;
280
- genderTypeCode: UniRefund_TravellerService_Enums_GenderTypeCode;
281
- };
282
-
283
- export type UniRefund_TravellerService_PersonalSummaries_UpsertPersonalSummaryDto = {
284
- genderTypeCode: UniRefund_TravellerService_Enums_GenderTypeCode;
285
- };
286
-
287
- export type UniRefund_TravellerService_PersonalSummaries_UpsertPersonalSummaryResponseDto = {
288
- id: string;
289
- travellerId: string;
290
- };
291
-
292
- export type UniRefund_TravellerService_TelephoneTypes_CreateTelephoneTypeDto = {
293
- readonly extraProperties?: {
294
- [key: string]: unknown;
295
- } | null;
296
- areaCode: string;
297
- localNumber: string;
298
- ituCountryCode: string;
299
- primaryFlag: boolean;
300
- typeCode: UniRefund_TravellerService_Enums_TelephoneTypeCode;
301
- contactInformationTypeId?: string;
302
- };
303
-
304
- export type UniRefund_TravellerService_TelephoneTypes_CreateTelephoneTypeWithComponentsDto = {
305
- readonly extraProperties?: {
306
- [key: string]: unknown;
307
- } | null;
308
- areaCode: string;
309
- localNumber: string;
310
- ituCountryCode: string;
311
- primaryFlag: boolean;
312
- typeCode: UniRefund_TravellerService_Enums_TelephoneTypeCode;
313
- };
314
-
315
- export type UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto = {
316
- id?: string;
317
- creationTime?: string;
318
- creatorId?: string | null;
319
- lastModificationTime?: string | null;
320
- lastModifierId?: string | null;
321
- isDeleted?: boolean;
322
- deleterId?: string | null;
323
- deletionTime?: string | null;
324
- areaCode?: string | null;
325
- localNumber?: string | null;
326
- ituCountryCode?: string | null;
327
- primaryFlag?: boolean;
328
- typeCode?: UniRefund_TravellerService_Enums_TelephoneTypeCode;
329
- contactInformationTypeId?: string;
330
- };
331
-
332
- export type UniRefund_TravellerService_TelephoneTypes_UpdateTelephoneTypeDto = {
333
- readonly extraProperties?: {
334
- [key: string]: unknown;
335
- } | null;
336
- id: string;
337
- areaCode: string;
338
- localNumber: string;
339
- ituCountryCode: string;
340
- primaryFlag: boolean;
341
- typeCode: UniRefund_TravellerService_Enums_TelephoneTypeCode;
342
- };
343
-
344
- export type UniRefund_TravellerService_Travellers_CreateTravellerDto = {
345
- readonly extraProperties?: {
346
- [key: string]: unknown;
347
- } | null;
348
- personalIdentification: UniRefund_TravellerService_PersonalIdentificationCommonDatas_CreatePersonalIdentificationCommonDataDto;
349
- gender?: UniRefund_TravellerService_Enums_GenderTypeCode;
350
- languagePreferenceCode?: string | null;
351
- };
352
-
353
- export type UniRefund_TravellerService_Travellers_CreateTravellerResponseDto = {
354
- id: string;
355
- };
356
-
357
- export type UniRefund_TravellerService_Travellers_CreateWithComponentsTravellerDto = {
358
- readonly extraProperties?: {
359
- [key: string]: unknown;
360
- } | null;
361
- entityInformationTypes: Array<UniRefund_TravellerService_EntityInformationTypes_CreateEntityInformationTypeDto>;
362
- personalIdentificationCommonDatas: Array<UniRefund_TravellerService_PersonalIdentificationCommonDatas_CreatePersonalIdentificationCommonDataDto>;
363
- personalPreferencesTypes: Array<UniRefund_TravellerService_PersonalPreferencesTypes_CreatePersonalPreferencesTypeDto>;
364
- };
365
-
366
- export type UniRefund_TravellerService_Travellers_TravellerDetailProfileDto = {
367
- id: string;
368
- languagePreferenceCode?: string | null;
369
- userAccountId?: string | null;
370
- readonly hasUserAccount: boolean;
371
- gender?: UniRefund_TravellerService_Enums_GenderTypeCode;
372
- personalIdentifications: Array<UniRefund_TravellerService_PersonalIdentificationCommonDatas_PersonalIdentificationProfileDto>;
373
- };
374
-
375
- export type UniRefund_TravellerService_Travellers_TravellerDocumentNumberDto = {
376
- id?: string;
377
- travelDocumentNumber?: string | null;
378
- };
379
-
380
- export type UniRefund_TravellerService_Travellers_TravellerListProfileDto = {
381
- id: string;
382
- languagePreferenceCode?: string | null;
383
- userAccountId?: string | null;
384
- readonly hasUserAccount: boolean;
385
- gender?: UniRefund_TravellerService_Enums_GenderTypeCode;
386
- travelDocumentNumber: string;
387
- residenceCountryCode2: string;
388
- residenceCountryName: string;
389
- nationalityCountryCode2: string;
390
- nationalityCountryName: string;
391
- firstName: string;
392
- middleName?: string | null;
393
- lastName: string;
394
- readonly fullName: string;
395
- birthDate?: string | null;
396
- expirationDate: string;
397
- identificationType: UniRefund_TravellerService_Enums_PersonalIdentificationTypeCode;
398
- };
399
-
400
- export type UniRefund_TravellerService_Travellers_UpsertTravellerDto = {
401
- readonly extraProperties?: {
402
- [key: string]: unknown;
403
- } | null;
404
- id?: string | null;
405
- travelDocumentNumber: string;
406
- nationalityCountryCode2: string;
407
- firstName: string;
408
- lastName: string;
409
- residenceCountryCode2: string;
410
- expirationDate?: string | null;
411
- birthDate?: string | null;
412
- creatorId?: string | null;
413
- };
414
-
415
- export type UniRefund_TravellerService_Travellers_UpsertTravellerResponseDto = {
416
- readonly extraProperties?: {
417
- [key: string]: unknown;
418
- } | null;
419
- id: string;
420
- travelDocumentNumber: string;
421
- };
422
-
423
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
424
- grantedPolicies?: {
425
- [key: string]: (boolean);
426
- } | null;
427
- };
428
-
429
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
430
- localization?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto;
431
- auth?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto;
432
- setting?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto;
433
- currentUser?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto;
434
- features?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto;
435
- globalFeatures?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto;
436
- multiTenancy?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto;
437
- currentTenant?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto;
438
- timing?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto;
439
- clock?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto;
440
- objectExtensions?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto;
441
- extraProperties?: {
442
- [key: string]: unknown;
443
- } | null;
444
- };
445
-
446
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto = {
447
- values?: {
448
- [key: string]: (string | null);
449
- } | null;
450
- };
451
-
452
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto = {
453
- enabledFeatures?: Array<(string)> | null;
454
- };
455
-
456
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto = {
457
- values?: {
458
- [key: string]: {
459
- [key: string]: (string);
460
- };
461
- } | null;
462
- resources?: {
463
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
464
- } | null;
465
- languages?: Array<Volo_Abp_Localization_LanguageInfo> | null;
466
- currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
467
- defaultResourceName?: string | null;
468
- languagesMap?: {
469
- [key: string]: Array<Volo_Abp_NameValue>;
470
- } | null;
471
- languageFilesMap?: {
472
- [key: string]: Array<Volo_Abp_NameValue>;
473
- } | null;
474
- };
475
-
476
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
477
- resources?: {
478
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
479
- } | null;
480
- currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
481
- };
482
-
483
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto = {
484
- texts?: {
485
- [key: string]: (string);
486
- } | null;
487
- baseResources?: Array<(string)> | null;
488
- };
489
-
490
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto = {
491
- values?: {
492
- [key: string]: (string | null);
493
- } | null;
494
- };
495
-
496
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto = {
497
- kind?: string | null;
498
- };
499
-
500
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto = {
501
- displayName?: string | null;
502
- englishName?: string | null;
503
- threeLetterIsoLanguageName?: string | null;
504
- twoLetterIsoLanguageName?: string | null;
505
- isRightToLeft?: boolean;
506
- cultureName?: string | null;
507
- name?: string | null;
508
- nativeName?: string | null;
509
- dateTimeFormat?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto;
510
- };
511
-
512
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
513
- isAuthenticated?: boolean;
514
- id?: string | null;
515
- tenantId?: string | null;
516
- impersonatorUserId?: string | null;
517
- impersonatorTenantId?: string | null;
518
- impersonatorUserName?: string | null;
519
- impersonatorTenantName?: string | null;
520
- userName?: string | null;
521
- name?: string | null;
522
- surName?: string | null;
523
- email?: string | null;
524
- emailVerified?: boolean;
525
- phoneNumber?: string | null;
526
- phoneNumberVerified?: boolean;
527
- roles?: Array<(string)> | null;
528
- sessionId?: string | null;
529
- };
530
-
531
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto = {
532
- calendarAlgorithmType?: string | null;
533
- dateTimeFormatLong?: string | null;
534
- shortDatePattern?: string | null;
535
- fullDateTimePattern?: string | null;
536
- dateSeparator?: string | null;
537
- shortTimePattern?: string | null;
538
- longTimePattern?: string | null;
539
- };
540
-
541
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone = {
542
- timeZoneName?: string | null;
543
- };
544
-
545
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
546
- properties?: {
547
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto;
548
- } | null;
549
- configuration?: {
550
- [key: string]: unknown;
551
- } | null;
552
- };
553
-
554
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
555
- fields?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto> | null;
556
- localizationResource?: string | null;
557
- };
558
-
559
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto = {
560
- name?: string | null;
561
- value?: unknown;
562
- };
563
-
564
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto = {
565
- isAvailable?: boolean;
566
- };
567
-
568
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
569
- onGet?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto;
570
- onCreate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto;
571
- onUpdate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto;
572
- };
573
-
574
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
575
- isAvailable?: boolean;
576
- };
577
-
578
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto = {
579
- isAvailable?: boolean;
580
- };
581
-
582
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto = {
583
- typeSimple?: string | null;
584
- config?: {
585
- [key: string]: unknown;
586
- } | null;
587
- };
588
-
589
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
590
- type?: string | null;
591
- typeSimple?: string | null;
592
- displayName?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto;
593
- api?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto;
594
- ui?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto;
595
- attributes?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto> | null;
596
- configuration?: {
597
- [key: string]: unknown;
598
- } | null;
599
- defaultValue?: unknown;
600
- };
601
-
602
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
603
- onTable?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto;
604
- onCreateForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
605
- onEditForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
606
- lookup?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto;
607
- };
608
-
609
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
610
- isVisible?: boolean;
611
- };
612
-
613
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto = {
614
- url?: string | null;
615
- resultListPropertyName?: string | null;
616
- displayPropertyName?: string | null;
617
- valuePropertyName?: string | null;
618
- filterParamName?: string | null;
619
- };
620
-
621
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto = {
622
- isVisible?: boolean;
623
- };
624
-
625
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto = {
626
- name?: string | null;
627
- resource?: string | null;
628
- };
629
-
630
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto = {
631
- entities?: {
632
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto;
633
- } | null;
634
- configuration?: {
635
- [key: string]: unknown;
636
- } | null;
637
- };
638
-
639
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto = {
640
- modules?: {
641
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto;
642
- } | null;
643
- enums?: {
644
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto;
645
- } | null;
646
- };
647
-
648
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
649
- iana?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone;
650
- windows?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone;
651
- };
652
-
653
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
654
- timeZone?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone;
655
- };
656
-
657
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone = {
658
- timeZoneId?: string | null;
659
- };
660
-
661
- export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto = {
662
- id?: string | null;
663
- name?: string | null;
664
- isAvailable?: boolean;
665
- };
666
-
667
- export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto = {
668
- isEnabled?: boolean;
669
- };
670
-
671
- export type Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
672
- uniqueName?: string | null;
673
- name?: string | null;
674
- httpMethod?: string | null;
675
- url?: string | null;
676
- supportedVersions?: Array<(string)> | null;
677
- parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
678
- parameters?: Array<Volo_Abp_Http_Modeling_ParameterApiDescriptionModel> | null;
679
- returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
680
- allowAnonymous?: boolean | null;
681
- implementFrom?: string | null;
682
- };
683
-
684
- export type Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
685
- modules?: {
686
- [key: string]: Volo_Abp_Http_Modeling_ModuleApiDescriptionModel;
687
- } | null;
688
- types?: {
689
- [key: string]: Volo_Abp_Http_Modeling_TypeApiDescriptionModel;
690
- } | null;
691
- };
692
-
693
- export type Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
694
- controllerName?: string | null;
695
- controllerGroupName?: string | null;
696
- isRemoteService?: boolean;
697
- isIntegrationService?: boolean;
698
- apiVersion?: string | null;
699
- type?: string | null;
700
- interfaces?: Array<Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel> | null;
701
- actions?: {
702
- [key: string]: Volo_Abp_Http_Modeling_ActionApiDescriptionModel;
703
- } | null;
704
- };
705
-
706
- export type Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
707
- type?: string | null;
708
- name?: string | null;
709
- methods?: Array<Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel> | null;
710
- };
711
-
712
- export type Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
713
- name?: string | null;
714
- parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
715
- returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
716
- };
717
-
718
- export type Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel = {
719
- name?: string | null;
720
- typeAsString?: string | null;
721
- type?: string | null;
722
- typeSimple?: string | null;
723
- isOptional?: boolean;
724
- defaultValue?: unknown;
725
- };
726
-
727
- export type Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
728
- rootPath?: string | null;
729
- remoteServiceName?: string | null;
730
- controllers?: {
731
- [key: string]: Volo_Abp_Http_Modeling_ControllerApiDescriptionModel;
732
- } | null;
733
- };
734
-
735
- export type Volo_Abp_Http_Modeling_ParameterApiDescriptionModel = {
736
- nameOnMethod?: string | null;
737
- name?: string | null;
738
- jsonName?: string | null;
739
- type?: string | null;
740
- typeSimple?: string | null;
741
- isOptional?: boolean;
742
- defaultValue?: unknown;
743
- constraintTypes?: Array<(string)> | null;
744
- bindingSourceId?: string | null;
745
- descriptorName?: string | null;
746
- };
747
-
748
- export type Volo_Abp_Http_Modeling_PropertyApiDescriptionModel = {
749
- name?: string | null;
750
- jsonName?: string | null;
751
- type?: string | null;
752
- typeSimple?: string | null;
753
- isRequired?: boolean;
754
- minLength?: number | null;
755
- maxLength?: number | null;
756
- minimum?: string | null;
757
- maximum?: string | null;
758
- regex?: string | null;
759
- };
760
-
761
- export type Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel = {
762
- type?: string | null;
763
- typeSimple?: string | null;
764
- };
765
-
766
- export type Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
767
- baseType?: string | null;
768
- isEnum?: boolean;
769
- enumNames?: Array<(string)> | null;
770
- enumValues?: Array<unknown> | null;
771
- genericArguments?: Array<(string)> | null;
772
- properties?: Array<Volo_Abp_Http_Modeling_PropertyApiDescriptionModel> | null;
773
- };
774
-
775
- export type Volo_Abp_Http_RemoteServiceErrorInfo = {
776
- code?: string | null;
777
- message?: string | null;
778
- details?: string | null;
779
- data?: {
780
- [key: string]: unknown;
781
- } | null;
782
- validationErrors?: Array<Volo_Abp_Http_RemoteServiceValidationErrorInfo> | null;
783
- };
784
-
785
- export type Volo_Abp_Http_RemoteServiceErrorResponse = {
786
- error?: Volo_Abp_Http_RemoteServiceErrorInfo;
787
- };
788
-
789
- export type Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
790
- message?: string | null;
791
- members?: Array<(string)> | null;
792
- };
793
-
794
- export type Volo_Abp_Localization_LanguageInfo = {
795
- cultureName?: string | null;
796
- uiCultureName?: string | null;
797
- displayName?: string | null;
798
- readonly twoLetterISOLanguageName?: string | null;
799
- };
800
-
801
- export type Volo_Abp_NameValue = {
802
- name?: string | null;
803
- value?: string | null;
804
- };
805
-
806
- export type GetApiAbpApiDefinitionData = {
807
- includeTypes?: boolean;
808
- };
809
-
810
- export type GetApiAbpApiDefinitionResponse = Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
811
-
812
- export type GetApiAbpApplicationConfigurationData = {
813
- includeLocalizationResources?: boolean;
814
- };
815
-
816
- export type GetApiAbpApplicationConfigurationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
817
-
818
- export type GetApiAbpApplicationLocalizationData = {
819
- cultureName: string;
820
- onlyDynamics?: boolean;
821
- };
822
-
823
- export type GetApiAbpApplicationLocalizationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
824
-
825
- export type GetApiTravellerServiceAddressesData = {
826
- maxResultCount?: number;
827
- skipCount?: number;
828
- sorting?: string;
829
- };
830
-
831
- export type GetApiTravellerServiceAddressesResponse = PagedResultDto_AddressTypeDto;
832
-
833
- export type PostApiTravellerServiceAddressesData = {
834
- requestBody?: UniRefund_TravellerService_AddressTypes_CreateAddressTypeDto;
835
- };
836
-
837
- export type PostApiTravellerServiceAddressesResponse = UniRefund_TravellerService_AddressTypes_AddressTypeDto;
838
-
839
- export type GetApiTravellerServiceAddressesByIdData = {
840
- id: string;
841
- };
842
-
843
- export type GetApiTravellerServiceAddressesByIdResponse = UniRefund_TravellerService_AddressTypes_AddressTypeDto;
844
-
845
- export type PutApiTravellerServiceAddressesByIdData = {
846
- id: string;
847
- requestBody?: UniRefund_TravellerService_AddressTypes_UpdateAddressTypeDto;
848
- };
849
-
850
- export type PutApiTravellerServiceAddressesByIdResponse = UniRefund_TravellerService_AddressTypes_AddressTypeDto;
851
-
852
- export type DeleteApiTravellerServiceAddressesByIdData = {
853
- id: string;
854
- };
855
-
856
- export type DeleteApiTravellerServiceAddressesByIdResponse = unknown;
857
-
858
- export type GetApiTravellerServiceEmailsData = {
859
- maxResultCount?: number;
860
- skipCount?: number;
861
- sorting?: string;
862
- };
863
-
864
- export type GetApiTravellerServiceEmailsResponse = PagedResultDto_EmailCommonDataDto;
865
-
866
- export type PostApiTravellerServiceEmailsData = {
867
- requestBody?: UniRefund_TravellerService_EmailCommonDatas_CreateEmailCommonDataDto;
868
- };
869
-
870
- export type PostApiTravellerServiceEmailsResponse = UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto;
871
-
872
- export type GetApiTravellerServiceEmailsByIdData = {
873
- id: string;
874
- };
875
-
876
- export type GetApiTravellerServiceEmailsByIdResponse = UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto;
877
-
878
- export type PutApiTravellerServiceEmailsByIdData = {
879
- id: string;
880
- requestBody?: UniRefund_TravellerService_EmailCommonDatas_UpdateEmailCommonDataDto;
881
- };
882
-
883
- export type PutApiTravellerServiceEmailsByIdResponse = UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto;
884
-
885
- export type DeleteApiTravellerServiceEmailsByIdData = {
886
- id: string;
887
- };
888
-
889
- export type DeleteApiTravellerServiceEmailsByIdResponse = unknown;
890
-
891
- export type PostApiTravellerServiceIndividualsWithComponentsData = {
892
- requestBody?: UniRefund_TravellerService_Individuals_CreateIndividualDto;
893
- };
894
-
895
- export type PostApiTravellerServiceIndividualsWithComponentsResponse = unknown;
896
-
897
- export type GetApiTravellerServiceIndividualsData = {
898
- entityPartyTypeCode?: UniRefund_TravellerService_Enums_EntityPartyTypeCode;
899
- maxResultCount?: number;
900
- parentId?: string;
901
- skipCount?: number;
902
- sorting?: string;
903
- };
904
-
905
- export type GetApiTravellerServiceIndividualsResponse = PagedResultDto_IndividualProfileDto;
906
-
907
- export type GetApiTravellerServiceTelephonesData = {
908
- maxResultCount?: number;
909
- skipCount?: number;
910
- sorting?: string;
911
- };
912
-
913
- export type GetApiTravellerServiceTelephonesResponse = PagedResultDto_TelephoneTypeDto;
914
-
915
- export type PostApiTravellerServiceTelephonesData = {
916
- requestBody?: UniRefund_TravellerService_TelephoneTypes_CreateTelephoneTypeDto;
917
- };
918
-
919
- export type PostApiTravellerServiceTelephonesResponse = UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto;
920
-
921
- export type GetApiTravellerServiceTelephonesByIdData = {
922
- id: string;
923
- };
924
-
925
- export type GetApiTravellerServiceTelephonesByIdResponse = UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto;
926
-
927
- export type PutApiTravellerServiceTelephonesByIdData = {
928
- id: string;
929
- requestBody?: UniRefund_TravellerService_TelephoneTypes_UpdateTelephoneTypeDto;
930
- };
931
-
932
- export type PutApiTravellerServiceTelephonesByIdResponse = UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto;
933
-
934
- export type DeleteApiTravellerServiceTelephonesByIdData = {
935
- id: string;
936
- };
937
-
938
- export type DeleteApiTravellerServiceTelephonesByIdResponse = unknown;
939
-
940
- export type PostApiTravellerServiceTravellersWithComponentsData = {
941
- requestBody?: UniRefund_TravellerService_Travellers_CreateWithComponentsTravellerDto;
942
- };
943
-
944
- export type PostApiTravellerServiceTravellersWithComponentsResponse = UniRefund_TravellerService_Travellers_CreateTravellerResponseDto;
945
-
946
- export type PostApiTravellerServiceTravellersData = {
947
- requestBody?: UniRefund_TravellerService_Travellers_CreateTravellerDto;
948
- };
949
-
950
- export type PostApiTravellerServiceTravellersResponse = UniRefund_TravellerService_Travellers_CreateTravellerResponseDto;
951
-
952
- export type GetApiTravellerServiceTravellersData = {
953
- email?: string;
954
- fullName?: string;
955
- maxResultCount?: number;
956
- nationalities?: Array<(string)>;
957
- phoneNumber?: string;
958
- residences?: Array<(string)>;
959
- showExpired?: boolean;
960
- skipCount?: number;
961
- sorting?: string;
962
- travelDocumentNumber?: string;
963
- username?: string;
964
- };
965
-
966
- export type GetApiTravellerServiceTravellersResponse = PagedResultDto_TravellerListProfileDto;
967
-
968
- export type PutApiTravellerServiceTravellersByIdUpsertPersonalPreferenceData = {
969
- id: string;
970
- requestBody?: UniRefund_TravellerService_PersonalPreferencesTypes_UpsertPersonalPreferenceDto;
971
- };
972
-
973
- export type PutApiTravellerServiceTravellersByIdUpsertPersonalPreferenceResponse = UniRefund_TravellerService_PersonalPreferencesTypes_UpsertPersonalPreferenceResponseDto;
974
-
975
- export type PutApiTravellerServiceTravellersByIdUpsertPersonalSummaryData = {
976
- id: string;
977
- requestBody?: UniRefund_TravellerService_PersonalSummaries_UpsertPersonalSummaryDto;
978
- };
979
-
980
- export type PutApiTravellerServiceTravellersByIdUpsertPersonalSummaryResponse = UniRefund_TravellerService_PersonalSummaries_UpsertPersonalSummaryResponseDto;
981
-
982
- export type PostApiTravellerServiceTravellersByIdCreatePersonalIdentificationData = {
983
- id: string;
984
- requestBody?: UniRefund_TravellerService_PersonalIdentificationCommonDatas_CreatePersonalIdentificationDto;
985
- };
986
-
987
- export type PostApiTravellerServiceTravellersByIdCreatePersonalIdentificationResponse = UniRefund_TravellerService_PersonalIdentificationCommonDatas_CreatePersonalIdentificationResponseDto;
988
-
989
- export type PutApiTravellerServiceTravellersByIdUpdatePersonalIdentificationData = {
990
- id: string;
991
- requestBody?: UniRefund_TravellerService_PersonalIdentificationCommonDatas_UpdatePersonalIdentificationDto;
992
- };
993
-
994
- export type PutApiTravellerServiceTravellersByIdUpdatePersonalIdentificationResponse = UniRefund_TravellerService_PersonalIdentificationCommonDatas_UpdatePersonalIdentificationResponseDto;
995
-
996
- export type DeleteApiTravellerServiceTravellersByIdDeletePersonalIdentificationData = {
997
- id: string;
998
- };
999
-
1000
- export type DeleteApiTravellerServiceTravellersByIdDeletePersonalIdentificationResponse = boolean;
1001
-
1002
- export type GetApiTravellerServiceTravellersByIdData = {
1003
- id: string;
1004
- showExpired?: boolean;
1005
- };
1006
-
1007
- export type GetApiTravellerServiceTravellersByIdResponse = UniRefund_TravellerService_Travellers_TravellerDetailProfileDto;
1008
-
1009
- export type GetIntegrationApiTravellersByIdDetailsData = {
1010
- id: string;
1011
- showExpired?: boolean;
1012
- };
1013
-
1014
- export type GetIntegrationApiTravellersByIdDetailsResponse = UniRefund_TravellerService_Travellers_TravellerDetailProfileDto;
1015
-
1016
- export type GetIntegrationApiTravellersByIdExistsData = {
1017
- id: string;
1018
- };
1019
-
1020
- export type GetIntegrationApiTravellersByIdExistsResponse = boolean;
1021
-
1022
- export type GetIntegrationApiTravellersDocumentNumbersData = {
1023
- ids?: Array<(string)>;
1024
- };
1025
-
1026
- export type GetIntegrationApiTravellersDocumentNumbersResponse = Array<UniRefund_TravellerService_Travellers_TravellerDocumentNumberDto>;
1027
-
1028
- export type GetIntegrationApiTravellersData = {
1029
- email?: string;
1030
- fullName?: string;
1031
- maxResultCount?: number;
1032
- nationalities?: Array<(string)>;
1033
- phoneNumber?: string;
1034
- residences?: Array<(string)>;
1035
- showExpired?: boolean;
1036
- skipCount?: number;
1037
- sorting?: string;
1038
- travelDocumentNumber?: string;
1039
- username?: string;
1040
- };
1041
-
1042
- export type GetIntegrationApiTravellersResponse = PagedResultDto_TravellerListProfileDto;
1043
-
1044
- export type PostIntegrationApiTravellersUpsertData = {
1045
- requestBody?: UniRefund_TravellerService_Travellers_UpsertTravellerDto;
1046
- };
1047
-
1048
- export type PostIntegrationApiTravellersUpsertResponse = UniRefund_TravellerService_Travellers_UpsertTravellerResponseDto;
1049
-
1050
- export type $OpenApiTs = {
1051
- '/api/abp/api-definition': {
1052
- get: {
1053
- req: GetApiAbpApiDefinitionData;
1054
- res: {
1055
- /**
1056
- * Success
1057
- */
1058
- 200: Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
1059
- /**
1060
- * Bad Request
1061
- */
1062
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1063
- /**
1064
- * Unauthorized
1065
- */
1066
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1067
- /**
1068
- * Forbidden
1069
- */
1070
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1071
- /**
1072
- * Not Found
1073
- */
1074
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1075
- /**
1076
- * Server Error
1077
- */
1078
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1079
- /**
1080
- * Server Error
1081
- */
1082
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1083
- };
1084
- };
1085
- };
1086
- '/api/abp/application-configuration': {
1087
- get: {
1088
- req: GetApiAbpApplicationConfigurationData;
1089
- res: {
1090
- /**
1091
- * Success
1092
- */
1093
- 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
1094
- /**
1095
- * Bad Request
1096
- */
1097
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1098
- /**
1099
- * Unauthorized
1100
- */
1101
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1102
- /**
1103
- * Forbidden
1104
- */
1105
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1106
- /**
1107
- * Not Found
1108
- */
1109
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1110
- /**
1111
- * Server Error
1112
- */
1113
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1114
- /**
1115
- * Server Error
1116
- */
1117
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1118
- };
1119
- };
1120
- };
1121
- '/api/abp/application-localization': {
1122
- get: {
1123
- req: GetApiAbpApplicationLocalizationData;
1124
- res: {
1125
- /**
1126
- * Success
1127
- */
1128
- 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
1129
- /**
1130
- * Bad Request
1131
- */
1132
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1133
- /**
1134
- * Unauthorized
1135
- */
1136
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1137
- /**
1138
- * Forbidden
1139
- */
1140
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1141
- /**
1142
- * Not Found
1143
- */
1144
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1145
- /**
1146
- * Server Error
1147
- */
1148
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1149
- /**
1150
- * Server Error
1151
- */
1152
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1153
- };
1154
- };
1155
- };
1156
- '/api/traveller-service/addresses': {
1157
- get: {
1158
- req: GetApiTravellerServiceAddressesData;
1159
- res: {
1160
- /**
1161
- * Success
1162
- */
1163
- 200: PagedResultDto_AddressTypeDto;
1164
- /**
1165
- * Bad Request
1166
- */
1167
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1168
- /**
1169
- * Unauthorized
1170
- */
1171
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1172
- /**
1173
- * Forbidden
1174
- */
1175
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1176
- /**
1177
- * Not Found
1178
- */
1179
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1180
- /**
1181
- * Server Error
1182
- */
1183
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1184
- /**
1185
- * Server Error
1186
- */
1187
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1188
- };
1189
- };
1190
- post: {
1191
- req: PostApiTravellerServiceAddressesData;
1192
- res: {
1193
- /**
1194
- * Success
1195
- */
1196
- 200: UniRefund_TravellerService_AddressTypes_AddressTypeDto;
1197
- /**
1198
- * Bad Request
1199
- */
1200
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1201
- /**
1202
- * Unauthorized
1203
- */
1204
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1205
- /**
1206
- * Forbidden
1207
- */
1208
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1209
- /**
1210
- * Not Found
1211
- */
1212
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1213
- /**
1214
- * Server Error
1215
- */
1216
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1217
- /**
1218
- * Server Error
1219
- */
1220
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1221
- };
1222
- };
1223
- };
1224
- '/api/traveller-service/addresses/{id}': {
1225
- get: {
1226
- req: GetApiTravellerServiceAddressesByIdData;
1227
- res: {
1228
- /**
1229
- * Success
1230
- */
1231
- 200: UniRefund_TravellerService_AddressTypes_AddressTypeDto;
1232
- /**
1233
- * Bad Request
1234
- */
1235
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1236
- /**
1237
- * Unauthorized
1238
- */
1239
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1240
- /**
1241
- * Forbidden
1242
- */
1243
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1244
- /**
1245
- * Not Found
1246
- */
1247
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1248
- /**
1249
- * Server Error
1250
- */
1251
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1252
- /**
1253
- * Server Error
1254
- */
1255
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1256
- };
1257
- };
1258
- put: {
1259
- req: PutApiTravellerServiceAddressesByIdData;
1260
- res: {
1261
- /**
1262
- * Success
1263
- */
1264
- 200: UniRefund_TravellerService_AddressTypes_AddressTypeDto;
1265
- /**
1266
- * Bad Request
1267
- */
1268
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1269
- /**
1270
- * Unauthorized
1271
- */
1272
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1273
- /**
1274
- * Forbidden
1275
- */
1276
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1277
- /**
1278
- * Not Found
1279
- */
1280
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1281
- /**
1282
- * Server Error
1283
- */
1284
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1285
- /**
1286
- * Server Error
1287
- */
1288
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1289
- };
1290
- };
1291
- delete: {
1292
- req: DeleteApiTravellerServiceAddressesByIdData;
1293
- res: {
1294
- /**
1295
- * Success
1296
- */
1297
- 200: unknown;
1298
- /**
1299
- * Bad Request
1300
- */
1301
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1302
- /**
1303
- * Unauthorized
1304
- */
1305
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1306
- /**
1307
- * Forbidden
1308
- */
1309
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1310
- /**
1311
- * Not Found
1312
- */
1313
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1314
- /**
1315
- * Server Error
1316
- */
1317
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1318
- /**
1319
- * Server Error
1320
- */
1321
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1322
- };
1323
- };
1324
- };
1325
- '/api/traveller-service/emails': {
1326
- get: {
1327
- req: GetApiTravellerServiceEmailsData;
1328
- res: {
1329
- /**
1330
- * Success
1331
- */
1332
- 200: PagedResultDto_EmailCommonDataDto;
1333
- /**
1334
- * Bad Request
1335
- */
1336
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1337
- /**
1338
- * Unauthorized
1339
- */
1340
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1341
- /**
1342
- * Forbidden
1343
- */
1344
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1345
- /**
1346
- * Not Found
1347
- */
1348
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1349
- /**
1350
- * Server Error
1351
- */
1352
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1353
- /**
1354
- * Server Error
1355
- */
1356
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1357
- };
1358
- };
1359
- post: {
1360
- req: PostApiTravellerServiceEmailsData;
1361
- res: {
1362
- /**
1363
- * Success
1364
- */
1365
- 200: UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto;
1366
- /**
1367
- * Bad Request
1368
- */
1369
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1370
- /**
1371
- * Unauthorized
1372
- */
1373
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1374
- /**
1375
- * Forbidden
1376
- */
1377
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1378
- /**
1379
- * Not Found
1380
- */
1381
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1382
- /**
1383
- * Server Error
1384
- */
1385
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1386
- /**
1387
- * Server Error
1388
- */
1389
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1390
- };
1391
- };
1392
- };
1393
- '/api/traveller-service/emails/{id}': {
1394
- get: {
1395
- req: GetApiTravellerServiceEmailsByIdData;
1396
- res: {
1397
- /**
1398
- * Success
1399
- */
1400
- 200: UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto;
1401
- /**
1402
- * Bad Request
1403
- */
1404
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1405
- /**
1406
- * Unauthorized
1407
- */
1408
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1409
- /**
1410
- * Forbidden
1411
- */
1412
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1413
- /**
1414
- * Not Found
1415
- */
1416
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1417
- /**
1418
- * Server Error
1419
- */
1420
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1421
- /**
1422
- * Server Error
1423
- */
1424
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1425
- };
1426
- };
1427
- put: {
1428
- req: PutApiTravellerServiceEmailsByIdData;
1429
- res: {
1430
- /**
1431
- * Success
1432
- */
1433
- 200: UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto;
1434
- /**
1435
- * Bad Request
1436
- */
1437
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1438
- /**
1439
- * Unauthorized
1440
- */
1441
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1442
- /**
1443
- * Forbidden
1444
- */
1445
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1446
- /**
1447
- * Not Found
1448
- */
1449
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1450
- /**
1451
- * Server Error
1452
- */
1453
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1454
- /**
1455
- * Server Error
1456
- */
1457
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1458
- };
1459
- };
1460
- delete: {
1461
- req: DeleteApiTravellerServiceEmailsByIdData;
1462
- res: {
1463
- /**
1464
- * Success
1465
- */
1466
- 200: unknown;
1467
- /**
1468
- * Bad Request
1469
- */
1470
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1471
- /**
1472
- * Unauthorized
1473
- */
1474
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1475
- /**
1476
- * Forbidden
1477
- */
1478
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1479
- /**
1480
- * Not Found
1481
- */
1482
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1483
- /**
1484
- * Server Error
1485
- */
1486
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1487
- /**
1488
- * Server Error
1489
- */
1490
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1491
- };
1492
- };
1493
- };
1494
- '/api/traveller-service/individuals/with-components': {
1495
- post: {
1496
- req: PostApiTravellerServiceIndividualsWithComponentsData;
1497
- res: {
1498
- /**
1499
- * Success
1500
- */
1501
- 200: unknown;
1502
- /**
1503
- * Bad Request
1504
- */
1505
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1506
- /**
1507
- * Unauthorized
1508
- */
1509
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1510
- /**
1511
- * Forbidden
1512
- */
1513
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1514
- /**
1515
- * Not Found
1516
- */
1517
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1518
- /**
1519
- * Server Error
1520
- */
1521
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1522
- /**
1523
- * Server Error
1524
- */
1525
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1526
- };
1527
- };
1528
- };
1529
- '/api/traveller-service/individuals': {
1530
- get: {
1531
- req: GetApiTravellerServiceIndividualsData;
1532
- res: {
1533
- /**
1534
- * Success
1535
- */
1536
- 200: PagedResultDto_IndividualProfileDto;
1537
- /**
1538
- * Bad Request
1539
- */
1540
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1541
- /**
1542
- * Unauthorized
1543
- */
1544
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1545
- /**
1546
- * Forbidden
1547
- */
1548
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1549
- /**
1550
- * Not Found
1551
- */
1552
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1553
- /**
1554
- * Server Error
1555
- */
1556
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1557
- /**
1558
- * Server Error
1559
- */
1560
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1561
- };
1562
- };
1563
- };
1564
- '/api/traveller-service/telephones': {
1565
- get: {
1566
- req: GetApiTravellerServiceTelephonesData;
1567
- res: {
1568
- /**
1569
- * Success
1570
- */
1571
- 200: PagedResultDto_TelephoneTypeDto;
1572
- /**
1573
- * Bad Request
1574
- */
1575
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1576
- /**
1577
- * Unauthorized
1578
- */
1579
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1580
- /**
1581
- * Forbidden
1582
- */
1583
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1584
- /**
1585
- * Not Found
1586
- */
1587
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1588
- /**
1589
- * Server Error
1590
- */
1591
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1592
- /**
1593
- * Server Error
1594
- */
1595
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1596
- };
1597
- };
1598
- post: {
1599
- req: PostApiTravellerServiceTelephonesData;
1600
- res: {
1601
- /**
1602
- * Success
1603
- */
1604
- 200: UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto;
1605
- /**
1606
- * Bad Request
1607
- */
1608
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1609
- /**
1610
- * Unauthorized
1611
- */
1612
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1613
- /**
1614
- * Forbidden
1615
- */
1616
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1617
- /**
1618
- * Not Found
1619
- */
1620
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1621
- /**
1622
- * Server Error
1623
- */
1624
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1625
- /**
1626
- * Server Error
1627
- */
1628
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1629
- };
1630
- };
1631
- };
1632
- '/api/traveller-service/telephones/{id}': {
1633
- get: {
1634
- req: GetApiTravellerServiceTelephonesByIdData;
1635
- res: {
1636
- /**
1637
- * Success
1638
- */
1639
- 200: UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto;
1640
- /**
1641
- * Bad Request
1642
- */
1643
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1644
- /**
1645
- * Unauthorized
1646
- */
1647
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1648
- /**
1649
- * Forbidden
1650
- */
1651
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1652
- /**
1653
- * Not Found
1654
- */
1655
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1656
- /**
1657
- * Server Error
1658
- */
1659
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1660
- /**
1661
- * Server Error
1662
- */
1663
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1664
- };
1665
- };
1666
- put: {
1667
- req: PutApiTravellerServiceTelephonesByIdData;
1668
- res: {
1669
- /**
1670
- * Success
1671
- */
1672
- 200: UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto;
1673
- /**
1674
- * Bad Request
1675
- */
1676
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1677
- /**
1678
- * Unauthorized
1679
- */
1680
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1681
- /**
1682
- * Forbidden
1683
- */
1684
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1685
- /**
1686
- * Not Found
1687
- */
1688
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1689
- /**
1690
- * Server Error
1691
- */
1692
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1693
- /**
1694
- * Server Error
1695
- */
1696
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1697
- };
1698
- };
1699
- delete: {
1700
- req: DeleteApiTravellerServiceTelephonesByIdData;
1701
- res: {
1702
- /**
1703
- * Success
1704
- */
1705
- 200: unknown;
1706
- /**
1707
- * Bad Request
1708
- */
1709
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1710
- /**
1711
- * Unauthorized
1712
- */
1713
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1714
- /**
1715
- * Forbidden
1716
- */
1717
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1718
- /**
1719
- * Not Found
1720
- */
1721
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1722
- /**
1723
- * Server Error
1724
- */
1725
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1726
- /**
1727
- * Server Error
1728
- */
1729
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1730
- };
1731
- };
1732
- };
1733
- '/api/traveller-service/travellers/with-components': {
1734
- post: {
1735
- req: PostApiTravellerServiceTravellersWithComponentsData;
1736
- res: {
1737
- /**
1738
- * Success
1739
- */
1740
- 200: UniRefund_TravellerService_Travellers_CreateTravellerResponseDto;
1741
- /**
1742
- * Bad Request
1743
- */
1744
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1745
- /**
1746
- * Unauthorized
1747
- */
1748
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1749
- /**
1750
- * Forbidden
1751
- */
1752
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1753
- /**
1754
- * Not Found
1755
- */
1756
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1757
- /**
1758
- * Server Error
1759
- */
1760
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1761
- /**
1762
- * Server Error
1763
- */
1764
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1765
- };
1766
- };
1767
- };
1768
- '/api/traveller-service/travellers': {
1769
- post: {
1770
- req: PostApiTravellerServiceTravellersData;
1771
- res: {
1772
- /**
1773
- * Success
1774
- */
1775
- 200: UniRefund_TravellerService_Travellers_CreateTravellerResponseDto;
1776
- /**
1777
- * Bad Request
1778
- */
1779
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1780
- /**
1781
- * Unauthorized
1782
- */
1783
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1784
- /**
1785
- * Forbidden
1786
- */
1787
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1788
- /**
1789
- * Not Found
1790
- */
1791
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1792
- /**
1793
- * Server Error
1794
- */
1795
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1796
- /**
1797
- * Server Error
1798
- */
1799
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1800
- };
1801
- };
1802
- get: {
1803
- req: GetApiTravellerServiceTravellersData;
1804
- res: {
1805
- /**
1806
- * Success
1807
- */
1808
- 200: PagedResultDto_TravellerListProfileDto;
1809
- /**
1810
- * Bad Request
1811
- */
1812
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1813
- /**
1814
- * Unauthorized
1815
- */
1816
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1817
- /**
1818
- * Forbidden
1819
- */
1820
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1821
- /**
1822
- * Not Found
1823
- */
1824
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1825
- /**
1826
- * Server Error
1827
- */
1828
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1829
- /**
1830
- * Server Error
1831
- */
1832
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1833
- };
1834
- };
1835
- };
1836
- '/api/traveller-service/travellers/{id}/upsert-personal-preference': {
1837
- put: {
1838
- req: PutApiTravellerServiceTravellersByIdUpsertPersonalPreferenceData;
1839
- res: {
1840
- /**
1841
- * Success
1842
- */
1843
- 200: UniRefund_TravellerService_PersonalPreferencesTypes_UpsertPersonalPreferenceResponseDto;
1844
- /**
1845
- * Bad Request
1846
- */
1847
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1848
- /**
1849
- * Unauthorized
1850
- */
1851
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1852
- /**
1853
- * Forbidden
1854
- */
1855
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1856
- /**
1857
- * Not Found
1858
- */
1859
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1860
- /**
1861
- * Server Error
1862
- */
1863
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1864
- /**
1865
- * Server Error
1866
- */
1867
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1868
- };
1869
- };
1870
- };
1871
- '/api/traveller-service/travellers/{id}/upsert-personal-summary': {
1872
- put: {
1873
- req: PutApiTravellerServiceTravellersByIdUpsertPersonalSummaryData;
1874
- res: {
1875
- /**
1876
- * Success
1877
- */
1878
- 200: UniRefund_TravellerService_PersonalSummaries_UpsertPersonalSummaryResponseDto;
1879
- /**
1880
- * Bad Request
1881
- */
1882
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1883
- /**
1884
- * Unauthorized
1885
- */
1886
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1887
- /**
1888
- * Forbidden
1889
- */
1890
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1891
- /**
1892
- * Not Found
1893
- */
1894
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1895
- /**
1896
- * Server Error
1897
- */
1898
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1899
- /**
1900
- * Server Error
1901
- */
1902
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1903
- };
1904
- };
1905
- };
1906
- '/api/traveller-service/travellers/{id}/create-personal-identification': {
1907
- post: {
1908
- req: PostApiTravellerServiceTravellersByIdCreatePersonalIdentificationData;
1909
- res: {
1910
- /**
1911
- * Success
1912
- */
1913
- 200: UniRefund_TravellerService_PersonalIdentificationCommonDatas_CreatePersonalIdentificationResponseDto;
1914
- /**
1915
- * Bad Request
1916
- */
1917
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1918
- /**
1919
- * Unauthorized
1920
- */
1921
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1922
- /**
1923
- * Forbidden
1924
- */
1925
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1926
- /**
1927
- * Not Found
1928
- */
1929
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1930
- /**
1931
- * Server Error
1932
- */
1933
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1934
- /**
1935
- * Server Error
1936
- */
1937
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1938
- };
1939
- };
1940
- };
1941
- '/api/traveller-service/travellers/{id}/update-personal-identification': {
1942
- put: {
1943
- req: PutApiTravellerServiceTravellersByIdUpdatePersonalIdentificationData;
1944
- res: {
1945
- /**
1946
- * Success
1947
- */
1948
- 200: UniRefund_TravellerService_PersonalIdentificationCommonDatas_UpdatePersonalIdentificationResponseDto;
1949
- /**
1950
- * Bad Request
1951
- */
1952
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1953
- /**
1954
- * Unauthorized
1955
- */
1956
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1957
- /**
1958
- * Forbidden
1959
- */
1960
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1961
- /**
1962
- * Not Found
1963
- */
1964
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1965
- /**
1966
- * Server Error
1967
- */
1968
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1969
- /**
1970
- * Server Error
1971
- */
1972
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1973
- };
1974
- };
1975
- };
1976
- '/api/traveller-service/travellers/{id}/delete-personal-identification': {
1977
- delete: {
1978
- req: DeleteApiTravellerServiceTravellersByIdDeletePersonalIdentificationData;
1979
- res: {
1980
- /**
1981
- * Success
1982
- */
1983
- 200: boolean;
1984
- /**
1985
- * Bad Request
1986
- */
1987
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1988
- /**
1989
- * Unauthorized
1990
- */
1991
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1992
- /**
1993
- * Forbidden
1994
- */
1995
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1996
- /**
1997
- * Not Found
1998
- */
1999
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2000
- /**
2001
- * Server Error
2002
- */
2003
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2004
- /**
2005
- * Server Error
2006
- */
2007
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2008
- };
2009
- };
2010
- };
2011
- '/api/traveller-service/travellers/{id}': {
2012
- get: {
2013
- req: GetApiTravellerServiceTravellersByIdData;
2014
- res: {
2015
- /**
2016
- * Success
2017
- */
2018
- 200: UniRefund_TravellerService_Travellers_TravellerDetailProfileDto;
2019
- /**
2020
- * Bad Request
2021
- */
2022
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2023
- /**
2024
- * Unauthorized
2025
- */
2026
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2027
- /**
2028
- * Forbidden
2029
- */
2030
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2031
- /**
2032
- * Not Found
2033
- */
2034
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2035
- /**
2036
- * Server Error
2037
- */
2038
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2039
- /**
2040
- * Server Error
2041
- */
2042
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2043
- };
2044
- };
2045
- };
2046
- '/integration-api/travellers/{id}/details': {
2047
- get: {
2048
- req: GetIntegrationApiTravellersByIdDetailsData;
2049
- res: {
2050
- /**
2051
- * Success
2052
- */
2053
- 200: UniRefund_TravellerService_Travellers_TravellerDetailProfileDto;
2054
- /**
2055
- * Bad Request
2056
- */
2057
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2058
- /**
2059
- * Unauthorized
2060
- */
2061
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2062
- /**
2063
- * Forbidden
2064
- */
2065
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2066
- /**
2067
- * Not Found
2068
- */
2069
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2070
- /**
2071
- * Server Error
2072
- */
2073
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2074
- /**
2075
- * Server Error
2076
- */
2077
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2078
- };
2079
- };
2080
- };
2081
- '/integration-api/travellers/{id}/exists': {
2082
- get: {
2083
- req: GetIntegrationApiTravellersByIdExistsData;
2084
- res: {
2085
- /**
2086
- * Success
2087
- */
2088
- 200: boolean;
2089
- /**
2090
- * Bad Request
2091
- */
2092
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2093
- /**
2094
- * Unauthorized
2095
- */
2096
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2097
- /**
2098
- * Forbidden
2099
- */
2100
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2101
- /**
2102
- * Not Found
2103
- */
2104
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2105
- /**
2106
- * Server Error
2107
- */
2108
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2109
- /**
2110
- * Server Error
2111
- */
2112
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2113
- };
2114
- };
2115
- };
2116
- '/integration-api/travellers/document-numbers': {
2117
- get: {
2118
- req: GetIntegrationApiTravellersDocumentNumbersData;
2119
- res: {
2120
- /**
2121
- * Success
2122
- */
2123
- 200: Array<UniRefund_TravellerService_Travellers_TravellerDocumentNumberDto>;
2124
- /**
2125
- * Bad Request
2126
- */
2127
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2128
- /**
2129
- * Unauthorized
2130
- */
2131
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2132
- /**
2133
- * Forbidden
2134
- */
2135
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2136
- /**
2137
- * Not Found
2138
- */
2139
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2140
- /**
2141
- * Server Error
2142
- */
2143
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2144
- /**
2145
- * Server Error
2146
- */
2147
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2148
- };
2149
- };
2150
- };
2151
- '/integration-api/travellers': {
2152
- get: {
2153
- req: GetIntegrationApiTravellersData;
2154
- res: {
2155
- /**
2156
- * Success
2157
- */
2158
- 200: PagedResultDto_TravellerListProfileDto;
2159
- /**
2160
- * Bad Request
2161
- */
2162
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2163
- /**
2164
- * Unauthorized
2165
- */
2166
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2167
- /**
2168
- * Forbidden
2169
- */
2170
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2171
- /**
2172
- * Not Found
2173
- */
2174
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2175
- /**
2176
- * Server Error
2177
- */
2178
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2179
- /**
2180
- * Server Error
2181
- */
2182
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2183
- };
2184
- };
2185
- };
2186
- '/integration-api/travellers/upsert': {
2187
- post: {
2188
- req: PostIntegrationApiTravellersUpsertData;
2189
- res: {
2190
- /**
2191
- * Success
2192
- */
2193
- 200: UniRefund_TravellerService_Travellers_UpsertTravellerResponseDto;
2194
- /**
2195
- * Bad Request
2196
- */
2197
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2198
- /**
2199
- * Unauthorized
2200
- */
2201
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2202
- /**
2203
- * Forbidden
2204
- */
2205
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2206
- /**
2207
- * Not Found
2208
- */
2209
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2210
- /**
2211
- * Server Error
2212
- */
2213
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2214
- /**
2215
- * Server Error
2216
- */
2217
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2218
- };
2219
- };
2220
- };
1
+ // This file is auto-generated by @hey-api/openapi-ts
2
+
3
+ export type PagedResultDto_AddressTypeDto = {
4
+ items?: Array<UniRefund_TravellerService_AddressTypes_AddressTypeDto> | null;
5
+ totalCount?: number;
6
+ };
7
+
8
+ export type PagedResultDto_EmailCommonDataDto = {
9
+ items?: Array<UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto> | null;
10
+ totalCount?: number;
11
+ };
12
+
13
+ export type PagedResultDto_IndividualProfileDto = {
14
+ items?: Array<UniRefund_TravellerService_Individuals_IndividualProfileDto> | null;
15
+ totalCount?: number;
16
+ };
17
+
18
+ export type PagedResultDto_TelephoneTypeDto = {
19
+ items?: Array<UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto> | null;
20
+ totalCount?: number;
21
+ };
22
+
23
+ export type PagedResultDto_TravellerListProfileDto = {
24
+ items?: Array<UniRefund_TravellerService_Travellers_TravellerListProfileDto> | null;
25
+ totalCount?: number;
26
+ };
27
+
28
+ export type UniRefund_TravellerService_AddressTypes_AddressTypeDto = {
29
+ id?: string;
30
+ creationTime?: string;
31
+ creatorId?: string | null;
32
+ lastModificationTime?: string | null;
33
+ lastModifierId?: string | null;
34
+ isDeleted?: boolean;
35
+ deleterId?: string | null;
36
+ deletionTime?: string | null;
37
+ addressLine?: string | null;
38
+ city?: string | null;
39
+ terriority?: string | null;
40
+ postalCode?: string | null;
41
+ country?: string | null;
42
+ fullAddress?: string | null;
43
+ typeCode?: UniRefund_TravellerService_Enums_AddressTypeCode;
44
+ primaryFlag?: boolean;
45
+ contactInformationTypeId?: string;
46
+ };
47
+
48
+ export type UniRefund_TravellerService_AddressTypes_CreateAddressTypeDto = {
49
+ readonly extraProperties?: {
50
+ [key: string]: unknown;
51
+ } | null;
52
+ addressLine: string;
53
+ city: string;
54
+ terriority: string;
55
+ postalCode: string;
56
+ country: string;
57
+ fullAddress: string;
58
+ primaryFlag: boolean;
59
+ typeCode: UniRefund_TravellerService_Enums_AddressTypeCode;
60
+ contactInformationTypeId?: string;
61
+ };
62
+
63
+ export type UniRefund_TravellerService_AddressTypes_CreateAddressTypeWithComponentsDto = {
64
+ readonly extraProperties?: {
65
+ [key: string]: unknown;
66
+ } | null;
67
+ addressLine: string;
68
+ city: string;
69
+ terriority: string;
70
+ postalCode: string;
71
+ country: string;
72
+ fullAddress: string;
73
+ primaryFlag: boolean;
74
+ typeCode: UniRefund_TravellerService_Enums_AddressTypeCode;
75
+ };
76
+
77
+ export type UniRefund_TravellerService_AddressTypes_UpdateAddressTypeDto = {
78
+ readonly extraProperties?: {
79
+ [key: string]: unknown;
80
+ } | null;
81
+ id: string;
82
+ addressLine: string;
83
+ city: string;
84
+ terriority: string;
85
+ postalCode: string;
86
+ country: string;
87
+ fullAddress: string;
88
+ primaryFlag: boolean;
89
+ typeCode: UniRefund_TravellerService_Enums_AddressTypeCode;
90
+ };
91
+
92
+ export type UniRefund_TravellerService_ContactInformationTypes_CreateContactInformationTypeDto = {
93
+ readonly extraProperties?: {
94
+ [key: string]: unknown;
95
+ } | null;
96
+ telephones?: Array<UniRefund_TravellerService_TelephoneTypes_CreateTelephoneTypeWithComponentsDto> | null;
97
+ addresses?: Array<UniRefund_TravellerService_AddressTypes_CreateAddressTypeWithComponentsDto> | null;
98
+ emails?: Array<UniRefund_TravellerService_EmailCommonDatas_CreateEmailCommonDataWithComponentsDto> | null;
99
+ };
100
+
101
+ export type UniRefund_TravellerService_EmailCommonDatas_CreateEmailCommonDataDto = {
102
+ readonly extraProperties?: {
103
+ [key: string]: unknown;
104
+ } | null;
105
+ emailAddress: string;
106
+ primaryFlag: boolean;
107
+ typeCode: UniRefund_TravellerService_Enums_EmailTypeCode;
108
+ contactInformationTypeId: string;
109
+ };
110
+
111
+ export type UniRefund_TravellerService_EmailCommonDatas_CreateEmailCommonDataWithComponentsDto = {
112
+ readonly extraProperties?: {
113
+ [key: string]: unknown;
114
+ } | null;
115
+ emailAddress: string;
116
+ primaryFlag: boolean;
117
+ typeCode: UniRefund_TravellerService_Enums_EmailTypeCode;
118
+ };
119
+
120
+ export type UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto = {
121
+ id?: string;
122
+ creationTime?: string;
123
+ creatorId?: string | null;
124
+ lastModificationTime?: string | null;
125
+ lastModifierId?: string | null;
126
+ isDeleted?: boolean;
127
+ deleterId?: string | null;
128
+ deletionTime?: string | null;
129
+ primaryFlag?: boolean;
130
+ typeCode?: UniRefund_TravellerService_Enums_EmailTypeCode;
131
+ emailAddress?: string | null;
132
+ contactInformationTypeId?: string;
133
+ };
134
+
135
+ export type UniRefund_TravellerService_EmailCommonDatas_UpdateEmailCommonDataDto = {
136
+ readonly extraProperties?: {
137
+ [key: string]: unknown;
138
+ } | null;
139
+ id: string;
140
+ emailAddress: string;
141
+ primaryFlag: boolean;
142
+ typeCode: UniRefund_TravellerService_Enums_EmailTypeCode;
143
+ };
144
+
145
+ export type UniRefund_TravellerService_EntityInformationTypes_CreateEntityInformationTypeDto = {
146
+ readonly extraProperties?: {
147
+ [key: string]: unknown;
148
+ } | null;
149
+ individuals?: Array<UniRefund_TravellerService_Individuals_CreateIndividualDto> | null;
150
+ };
151
+
152
+ export type UniRefund_TravellerService_Enums_AddressTypeCode = 'HOME' | 'OFFICE';
153
+
154
+ export type UniRefund_TravellerService_Enums_AffiliationTypeCode = 'COFOUNDER' | 'PARTNER' | 'ABPUSER';
155
+
156
+ export type UniRefund_TravellerService_Enums_EmailTypeCode = 'WORK' | 'PERSONAL';
157
+
158
+ export type UniRefund_TravellerService_Enums_EntityPartyTypeCode = 'TRAVELLER';
159
+
160
+ export type UniRefund_TravellerService_Enums_GenderTypeCode = 'MALE' | 'FEMALE';
161
+
162
+ export type UniRefund_TravellerService_Enums_PersonalIdentificationTypeCode = 'Passport';
163
+
164
+ export type UniRefund_TravellerService_Enums_TelephoneTypeCode = 'HOME' | 'OFFICE' | 'MOBILE' | 'FAX';
165
+
166
+ export type UniRefund_TravellerService_Individuals_CreateIndividualDto = {
167
+ readonly extraProperties?: {
168
+ [key: string]: unknown;
169
+ } | null;
170
+ name?: UniRefund_TravellerService_NameCommonDatas_CreateNameCommonDataDto;
171
+ personalSummaries?: Array<UniRefund_TravellerService_PersonalSummaries_CreatePersonalSummaryDto> | null;
172
+ contactInformations?: Array<UniRefund_TravellerService_ContactInformationTypes_CreateContactInformationTypeDto> | null;
173
+ };
174
+
175
+ export type UniRefund_TravellerService_Individuals_IndividualProfileDto = {
176
+ id?: string;
177
+ name?: string | null;
178
+ affiliationId?: string | null;
179
+ affiliatedName?: string | null;
180
+ affiliationTypeCode?: UniRefund_TravellerService_Enums_AffiliationTypeCode;
181
+ affiliationTypeCodeValue?: string | null;
182
+ affiliationParentTypeCode?: UniRefund_TravellerService_Enums_EntityPartyTypeCode;
183
+ affiliationParentTypeCodeValue?: string | null;
184
+ };
185
+
186
+ export type UniRefund_TravellerService_NameCommonDatas_CreateNameCommonDataDto = {
187
+ firstName: string;
188
+ lastName: string;
189
+ };
190
+
191
+ export type UniRefund_TravellerService_PersonalIdentificationCommonDatas_CreatePersonalIdentificationCommonDataDto = {
192
+ firstName: string;
193
+ middleName?: string | null;
194
+ lastName: string;
195
+ travelDocumentNumber: string;
196
+ birthDate?: string | null;
197
+ issueDate?: string | null;
198
+ expirationDate?: string | null;
199
+ residenceCountryCode2: string;
200
+ nationalityCountryCode2: string;
201
+ identificationType?: UniRefund_TravellerService_Enums_PersonalIdentificationTypeCode;
202
+ };
203
+
204
+ export type UniRefund_TravellerService_PersonalIdentificationCommonDatas_CreatePersonalIdentificationDto = {
205
+ travelDocumentNumber: string;
206
+ birthDate?: string | null;
207
+ firstName: string;
208
+ middleName?: string | null;
209
+ lastName: string;
210
+ issueDate?: string | null;
211
+ expirationDate: string;
212
+ residenceCountryCode2: string;
213
+ nationalityCountryCode2: string;
214
+ identificationType: UniRefund_TravellerService_Enums_PersonalIdentificationTypeCode;
215
+ };
216
+
217
+ export type UniRefund_TravellerService_PersonalIdentificationCommonDatas_CreatePersonalIdentificationResponseDto = {
218
+ id: string;
219
+ travellerId: string;
220
+ };
221
+
222
+ export type UniRefund_TravellerService_PersonalIdentificationCommonDatas_PersonalIdentificationProfileDto = {
223
+ id: string;
224
+ travelDocumentNumber: string;
225
+ residenceCountryCode2: string;
226
+ residenceCountryName: string;
227
+ nationalityCountryCode2: string;
228
+ nationalityCountryName: string;
229
+ firstName: string;
230
+ middleName?: string | null;
231
+ lastName: string;
232
+ readonly fullName: string;
233
+ birthDate?: string | null;
234
+ issueDate?: string | null;
235
+ expirationDate: string;
236
+ identificationType: UniRefund_TravellerService_Enums_PersonalIdentificationTypeCode;
237
+ };
238
+
239
+ export type UniRefund_TravellerService_PersonalIdentificationCommonDatas_UpdatePersonalIdentificationDto = {
240
+ id?: string | null;
241
+ travelDocumentNumber?: string | null;
242
+ birthDate?: string | null;
243
+ firstName?: string | null;
244
+ middleName?: string | null;
245
+ lastName?: string | null;
246
+ issueDate?: string | null;
247
+ expirationDate: string;
248
+ residenceCountryCode2?: string | null;
249
+ nationalityCountryCode2?: string | null;
250
+ identificationType?: UniRefund_TravellerService_Enums_PersonalIdentificationTypeCode;
251
+ };
252
+
253
+ export type UniRefund_TravellerService_PersonalIdentificationCommonDatas_UpdatePersonalIdentificationResponseDto = {
254
+ id: string;
255
+ travellerId: string;
256
+ };
257
+
258
+ export type UniRefund_TravellerService_PersonalPreferencesTypes_CreatePersonalPreferencesTypeDto = {
259
+ languagePreferenceCode?: string | null;
260
+ };
261
+
262
+ export type UniRefund_TravellerService_PersonalPreferencesTypes_UpsertPersonalPreferenceDto = {
263
+ languagePreferenceCode: string;
264
+ };
265
+
266
+ export type UniRefund_TravellerService_PersonalPreferencesTypes_UpsertPersonalPreferenceResponseDto = {
267
+ id: string;
268
+ travellerId: string;
269
+ };
270
+
271
+ export type UniRefund_TravellerService_PersonalSummaries_CreatePersonalSummaryDto = {
272
+ readonly extraProperties?: {
273
+ [key: string]: unknown;
274
+ } | null;
275
+ date: string;
276
+ birthDate: string;
277
+ ethnicity: string;
278
+ maritalStatusCode: string;
279
+ religiousAffiliationName: string;
280
+ genderTypeCode: UniRefund_TravellerService_Enums_GenderTypeCode;
281
+ };
282
+
283
+ export type UniRefund_TravellerService_PersonalSummaries_UpsertPersonalSummaryDto = {
284
+ genderTypeCode: UniRefund_TravellerService_Enums_GenderTypeCode;
285
+ };
286
+
287
+ export type UniRefund_TravellerService_PersonalSummaries_UpsertPersonalSummaryResponseDto = {
288
+ id: string;
289
+ travellerId: string;
290
+ };
291
+
292
+ export type UniRefund_TravellerService_TelephoneTypes_CreateTelephoneTypeDto = {
293
+ readonly extraProperties?: {
294
+ [key: string]: unknown;
295
+ } | null;
296
+ areaCode: string;
297
+ localNumber: string;
298
+ ituCountryCode: string;
299
+ primaryFlag: boolean;
300
+ typeCode: UniRefund_TravellerService_Enums_TelephoneTypeCode;
301
+ contactInformationTypeId?: string;
302
+ };
303
+
304
+ export type UniRefund_TravellerService_TelephoneTypes_CreateTelephoneTypeWithComponentsDto = {
305
+ readonly extraProperties?: {
306
+ [key: string]: unknown;
307
+ } | null;
308
+ areaCode: string;
309
+ localNumber: string;
310
+ ituCountryCode: string;
311
+ primaryFlag: boolean;
312
+ typeCode: UniRefund_TravellerService_Enums_TelephoneTypeCode;
313
+ };
314
+
315
+ export type UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto = {
316
+ id?: string;
317
+ creationTime?: string;
318
+ creatorId?: string | null;
319
+ lastModificationTime?: string | null;
320
+ lastModifierId?: string | null;
321
+ isDeleted?: boolean;
322
+ deleterId?: string | null;
323
+ deletionTime?: string | null;
324
+ areaCode?: string | null;
325
+ localNumber?: string | null;
326
+ ituCountryCode?: string | null;
327
+ primaryFlag?: boolean;
328
+ typeCode?: UniRefund_TravellerService_Enums_TelephoneTypeCode;
329
+ contactInformationTypeId?: string;
330
+ };
331
+
332
+ export type UniRefund_TravellerService_TelephoneTypes_UpdateTelephoneTypeDto = {
333
+ readonly extraProperties?: {
334
+ [key: string]: unknown;
335
+ } | null;
336
+ id: string;
337
+ areaCode: string;
338
+ localNumber: string;
339
+ ituCountryCode: string;
340
+ primaryFlag: boolean;
341
+ typeCode: UniRefund_TravellerService_Enums_TelephoneTypeCode;
342
+ };
343
+
344
+ export type UniRefund_TravellerService_Travellers_CreateTravellerDto = {
345
+ readonly extraProperties?: {
346
+ [key: string]: unknown;
347
+ } | null;
348
+ personalIdentification: UniRefund_TravellerService_PersonalIdentificationCommonDatas_CreatePersonalIdentificationCommonDataDto;
349
+ gender?: UniRefund_TravellerService_Enums_GenderTypeCode;
350
+ languagePreferenceCode?: string | null;
351
+ };
352
+
353
+ export type UniRefund_TravellerService_Travellers_CreateTravellerResponseDto = {
354
+ id: string;
355
+ };
356
+
357
+ export type UniRefund_TravellerService_Travellers_CreateWithComponentsTravellerDto = {
358
+ readonly extraProperties?: {
359
+ [key: string]: unknown;
360
+ } | null;
361
+ entityInformationTypes: Array<UniRefund_TravellerService_EntityInformationTypes_CreateEntityInformationTypeDto>;
362
+ personalIdentificationCommonDatas: Array<UniRefund_TravellerService_PersonalIdentificationCommonDatas_CreatePersonalIdentificationCommonDataDto>;
363
+ personalPreferencesTypes: Array<UniRefund_TravellerService_PersonalPreferencesTypes_CreatePersonalPreferencesTypeDto>;
364
+ };
365
+
366
+ export type UniRefund_TravellerService_Travellers_TravellerDetailProfileDto = {
367
+ id: string;
368
+ languagePreferenceCode?: string | null;
369
+ userAccountId?: string | null;
370
+ readonly hasUserAccount: boolean;
371
+ gender?: UniRefund_TravellerService_Enums_GenderTypeCode;
372
+ personalIdentifications: Array<UniRefund_TravellerService_PersonalIdentificationCommonDatas_PersonalIdentificationProfileDto>;
373
+ };
374
+
375
+ export type UniRefund_TravellerService_Travellers_TravellerDocumentNumberDto = {
376
+ id?: string;
377
+ travelDocumentNumber?: string | null;
378
+ };
379
+
380
+ export type UniRefund_TravellerService_Travellers_TravellerListProfileDto = {
381
+ id: string;
382
+ languagePreferenceCode?: string | null;
383
+ userAccountId?: string | null;
384
+ readonly hasUserAccount: boolean;
385
+ gender?: UniRefund_TravellerService_Enums_GenderTypeCode;
386
+ travelDocumentNumber: string;
387
+ residenceCountryCode2: string;
388
+ residenceCountryName: string;
389
+ nationalityCountryCode2: string;
390
+ nationalityCountryName: string;
391
+ firstName: string;
392
+ middleName?: string | null;
393
+ lastName: string;
394
+ readonly fullName: string;
395
+ birthDate?: string | null;
396
+ expirationDate: string;
397
+ identificationType: UniRefund_TravellerService_Enums_PersonalIdentificationTypeCode;
398
+ };
399
+
400
+ export type UniRefund_TravellerService_Travellers_UpsertTravellerDto = {
401
+ readonly extraProperties?: {
402
+ [key: string]: unknown;
403
+ } | null;
404
+ id?: string | null;
405
+ travelDocumentNumber: string;
406
+ nationalityCountryCode2: string;
407
+ firstName: string;
408
+ lastName: string;
409
+ residenceCountryCode2: string;
410
+ expirationDate?: string | null;
411
+ birthDate?: string | null;
412
+ creatorId?: string | null;
413
+ };
414
+
415
+ export type UniRefund_TravellerService_Travellers_UpsertTravellerResponseDto = {
416
+ readonly extraProperties?: {
417
+ [key: string]: unknown;
418
+ } | null;
419
+ id: string;
420
+ travelDocumentNumber: string;
421
+ };
422
+
423
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
424
+ grantedPolicies?: {
425
+ [key: string]: (boolean);
426
+ } | null;
427
+ };
428
+
429
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
430
+ localization?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto;
431
+ auth?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto;
432
+ setting?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto;
433
+ currentUser?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto;
434
+ features?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto;
435
+ globalFeatures?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto;
436
+ multiTenancy?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto;
437
+ currentTenant?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto;
438
+ timing?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto;
439
+ clock?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto;
440
+ objectExtensions?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto;
441
+ extraProperties?: {
442
+ [key: string]: unknown;
443
+ } | null;
444
+ };
445
+
446
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto = {
447
+ values?: {
448
+ [key: string]: (string | null);
449
+ } | null;
450
+ };
451
+
452
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto = {
453
+ enabledFeatures?: Array<(string)> | null;
454
+ };
455
+
456
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto = {
457
+ values?: {
458
+ [key: string]: {
459
+ [key: string]: (string);
460
+ };
461
+ } | null;
462
+ resources?: {
463
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
464
+ } | null;
465
+ languages?: Array<Volo_Abp_Localization_LanguageInfo> | null;
466
+ currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
467
+ defaultResourceName?: string | null;
468
+ languagesMap?: {
469
+ [key: string]: Array<Volo_Abp_NameValue>;
470
+ } | null;
471
+ languageFilesMap?: {
472
+ [key: string]: Array<Volo_Abp_NameValue>;
473
+ } | null;
474
+ };
475
+
476
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
477
+ resources?: {
478
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
479
+ } | null;
480
+ currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
481
+ };
482
+
483
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto = {
484
+ texts?: {
485
+ [key: string]: (string);
486
+ } | null;
487
+ baseResources?: Array<(string)> | null;
488
+ };
489
+
490
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto = {
491
+ values?: {
492
+ [key: string]: (string | null);
493
+ } | null;
494
+ };
495
+
496
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto = {
497
+ kind?: string | null;
498
+ };
499
+
500
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto = {
501
+ displayName?: string | null;
502
+ englishName?: string | null;
503
+ threeLetterIsoLanguageName?: string | null;
504
+ twoLetterIsoLanguageName?: string | null;
505
+ isRightToLeft?: boolean;
506
+ cultureName?: string | null;
507
+ name?: string | null;
508
+ nativeName?: string | null;
509
+ dateTimeFormat?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto;
510
+ };
511
+
512
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
513
+ isAuthenticated?: boolean;
514
+ id?: string | null;
515
+ tenantId?: string | null;
516
+ impersonatorUserId?: string | null;
517
+ impersonatorTenantId?: string | null;
518
+ impersonatorUserName?: string | null;
519
+ impersonatorTenantName?: string | null;
520
+ userName?: string | null;
521
+ name?: string | null;
522
+ surName?: string | null;
523
+ email?: string | null;
524
+ emailVerified?: boolean;
525
+ phoneNumber?: string | null;
526
+ phoneNumberVerified?: boolean;
527
+ roles?: Array<(string)> | null;
528
+ sessionId?: string | null;
529
+ };
530
+
531
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto = {
532
+ calendarAlgorithmType?: string | null;
533
+ dateTimeFormatLong?: string | null;
534
+ shortDatePattern?: string | null;
535
+ fullDateTimePattern?: string | null;
536
+ dateSeparator?: string | null;
537
+ shortTimePattern?: string | null;
538
+ longTimePattern?: string | null;
539
+ };
540
+
541
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone = {
542
+ timeZoneName?: string | null;
543
+ };
544
+
545
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
546
+ properties?: {
547
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto;
548
+ } | null;
549
+ configuration?: {
550
+ [key: string]: unknown;
551
+ } | null;
552
+ };
553
+
554
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
555
+ fields?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto> | null;
556
+ localizationResource?: string | null;
557
+ };
558
+
559
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto = {
560
+ name?: string | null;
561
+ value?: unknown;
562
+ };
563
+
564
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto = {
565
+ isAvailable?: boolean;
566
+ };
567
+
568
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
569
+ onGet?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto;
570
+ onCreate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto;
571
+ onUpdate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto;
572
+ };
573
+
574
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
575
+ isAvailable?: boolean;
576
+ };
577
+
578
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto = {
579
+ isAvailable?: boolean;
580
+ };
581
+
582
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto = {
583
+ typeSimple?: string | null;
584
+ config?: {
585
+ [key: string]: unknown;
586
+ } | null;
587
+ };
588
+
589
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
590
+ type?: string | null;
591
+ typeSimple?: string | null;
592
+ displayName?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto;
593
+ api?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto;
594
+ ui?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto;
595
+ attributes?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto> | null;
596
+ configuration?: {
597
+ [key: string]: unknown;
598
+ } | null;
599
+ defaultValue?: unknown;
600
+ };
601
+
602
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
603
+ onTable?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto;
604
+ onCreateForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
605
+ onEditForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
606
+ lookup?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto;
607
+ };
608
+
609
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
610
+ isVisible?: boolean;
611
+ };
612
+
613
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto = {
614
+ url?: string | null;
615
+ resultListPropertyName?: string | null;
616
+ displayPropertyName?: string | null;
617
+ valuePropertyName?: string | null;
618
+ filterParamName?: string | null;
619
+ };
620
+
621
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto = {
622
+ isVisible?: boolean;
623
+ };
624
+
625
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto = {
626
+ name?: string | null;
627
+ resource?: string | null;
628
+ };
629
+
630
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto = {
631
+ entities?: {
632
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto;
633
+ } | null;
634
+ configuration?: {
635
+ [key: string]: unknown;
636
+ } | null;
637
+ };
638
+
639
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto = {
640
+ modules?: {
641
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto;
642
+ } | null;
643
+ enums?: {
644
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto;
645
+ } | null;
646
+ };
647
+
648
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
649
+ iana?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone;
650
+ windows?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone;
651
+ };
652
+
653
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
654
+ timeZone?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone;
655
+ };
656
+
657
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone = {
658
+ timeZoneId?: string | null;
659
+ };
660
+
661
+ export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto = {
662
+ id?: string | null;
663
+ name?: string | null;
664
+ isAvailable?: boolean;
665
+ };
666
+
667
+ export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto = {
668
+ isEnabled?: boolean;
669
+ };
670
+
671
+ export type Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
672
+ uniqueName?: string | null;
673
+ name?: string | null;
674
+ httpMethod?: string | null;
675
+ url?: string | null;
676
+ supportedVersions?: Array<(string)> | null;
677
+ parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
678
+ parameters?: Array<Volo_Abp_Http_Modeling_ParameterApiDescriptionModel> | null;
679
+ returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
680
+ allowAnonymous?: boolean | null;
681
+ implementFrom?: string | null;
682
+ };
683
+
684
+ export type Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
685
+ modules?: {
686
+ [key: string]: Volo_Abp_Http_Modeling_ModuleApiDescriptionModel;
687
+ } | null;
688
+ types?: {
689
+ [key: string]: Volo_Abp_Http_Modeling_TypeApiDescriptionModel;
690
+ } | null;
691
+ };
692
+
693
+ export type Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
694
+ controllerName?: string | null;
695
+ controllerGroupName?: string | null;
696
+ isRemoteService?: boolean;
697
+ isIntegrationService?: boolean;
698
+ apiVersion?: string | null;
699
+ type?: string | null;
700
+ interfaces?: Array<Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel> | null;
701
+ actions?: {
702
+ [key: string]: Volo_Abp_Http_Modeling_ActionApiDescriptionModel;
703
+ } | null;
704
+ };
705
+
706
+ export type Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
707
+ type?: string | null;
708
+ name?: string | null;
709
+ methods?: Array<Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel> | null;
710
+ };
711
+
712
+ export type Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
713
+ name?: string | null;
714
+ parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
715
+ returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
716
+ };
717
+
718
+ export type Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel = {
719
+ name?: string | null;
720
+ typeAsString?: string | null;
721
+ type?: string | null;
722
+ typeSimple?: string | null;
723
+ isOptional?: boolean;
724
+ defaultValue?: unknown;
725
+ };
726
+
727
+ export type Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
728
+ rootPath?: string | null;
729
+ remoteServiceName?: string | null;
730
+ controllers?: {
731
+ [key: string]: Volo_Abp_Http_Modeling_ControllerApiDescriptionModel;
732
+ } | null;
733
+ };
734
+
735
+ export type Volo_Abp_Http_Modeling_ParameterApiDescriptionModel = {
736
+ nameOnMethod?: string | null;
737
+ name?: string | null;
738
+ jsonName?: string | null;
739
+ type?: string | null;
740
+ typeSimple?: string | null;
741
+ isOptional?: boolean;
742
+ defaultValue?: unknown;
743
+ constraintTypes?: Array<(string)> | null;
744
+ bindingSourceId?: string | null;
745
+ descriptorName?: string | null;
746
+ };
747
+
748
+ export type Volo_Abp_Http_Modeling_PropertyApiDescriptionModel = {
749
+ name?: string | null;
750
+ jsonName?: string | null;
751
+ type?: string | null;
752
+ typeSimple?: string | null;
753
+ isRequired?: boolean;
754
+ minLength?: number | null;
755
+ maxLength?: number | null;
756
+ minimum?: string | null;
757
+ maximum?: string | null;
758
+ regex?: string | null;
759
+ };
760
+
761
+ export type Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel = {
762
+ type?: string | null;
763
+ typeSimple?: string | null;
764
+ };
765
+
766
+ export type Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
767
+ baseType?: string | null;
768
+ isEnum?: boolean;
769
+ enumNames?: Array<(string)> | null;
770
+ enumValues?: Array<unknown> | null;
771
+ genericArguments?: Array<(string)> | null;
772
+ properties?: Array<Volo_Abp_Http_Modeling_PropertyApiDescriptionModel> | null;
773
+ };
774
+
775
+ export type Volo_Abp_Http_RemoteServiceErrorInfo = {
776
+ code?: string | null;
777
+ message?: string | null;
778
+ details?: string | null;
779
+ data?: {
780
+ [key: string]: unknown;
781
+ } | null;
782
+ validationErrors?: Array<Volo_Abp_Http_RemoteServiceValidationErrorInfo> | null;
783
+ };
784
+
785
+ export type Volo_Abp_Http_RemoteServiceErrorResponse = {
786
+ error?: Volo_Abp_Http_RemoteServiceErrorInfo;
787
+ };
788
+
789
+ export type Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
790
+ message?: string | null;
791
+ members?: Array<(string)> | null;
792
+ };
793
+
794
+ export type Volo_Abp_Localization_LanguageInfo = {
795
+ cultureName?: string | null;
796
+ uiCultureName?: string | null;
797
+ displayName?: string | null;
798
+ readonly twoLetterISOLanguageName?: string | null;
799
+ };
800
+
801
+ export type Volo_Abp_NameValue = {
802
+ name?: string | null;
803
+ value?: string | null;
804
+ };
805
+
806
+ export type GetApiAbpApiDefinitionData = {
807
+ includeTypes?: boolean;
808
+ };
809
+
810
+ export type GetApiAbpApiDefinitionResponse = Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
811
+
812
+ export type GetApiAbpApplicationConfigurationData = {
813
+ includeLocalizationResources?: boolean;
814
+ };
815
+
816
+ export type GetApiAbpApplicationConfigurationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
817
+
818
+ export type GetApiAbpApplicationLocalizationData = {
819
+ cultureName: string;
820
+ onlyDynamics?: boolean;
821
+ };
822
+
823
+ export type GetApiAbpApplicationLocalizationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
824
+
825
+ export type GetApiTravellerServiceAddressesData = {
826
+ maxResultCount?: number;
827
+ skipCount?: number;
828
+ sorting?: string;
829
+ };
830
+
831
+ export type GetApiTravellerServiceAddressesResponse = PagedResultDto_AddressTypeDto;
832
+
833
+ export type PostApiTravellerServiceAddressesData = {
834
+ requestBody?: UniRefund_TravellerService_AddressTypes_CreateAddressTypeDto;
835
+ };
836
+
837
+ export type PostApiTravellerServiceAddressesResponse = UniRefund_TravellerService_AddressTypes_AddressTypeDto;
838
+
839
+ export type GetApiTravellerServiceAddressesByIdData = {
840
+ id: string;
841
+ };
842
+
843
+ export type GetApiTravellerServiceAddressesByIdResponse = UniRefund_TravellerService_AddressTypes_AddressTypeDto;
844
+
845
+ export type PutApiTravellerServiceAddressesByIdData = {
846
+ id: string;
847
+ requestBody?: UniRefund_TravellerService_AddressTypes_UpdateAddressTypeDto;
848
+ };
849
+
850
+ export type PutApiTravellerServiceAddressesByIdResponse = UniRefund_TravellerService_AddressTypes_AddressTypeDto;
851
+
852
+ export type DeleteApiTravellerServiceAddressesByIdData = {
853
+ id: string;
854
+ };
855
+
856
+ export type DeleteApiTravellerServiceAddressesByIdResponse = unknown;
857
+
858
+ export type GetApiTravellerServiceEmailsData = {
859
+ maxResultCount?: number;
860
+ skipCount?: number;
861
+ sorting?: string;
862
+ };
863
+
864
+ export type GetApiTravellerServiceEmailsResponse = PagedResultDto_EmailCommonDataDto;
865
+
866
+ export type PostApiTravellerServiceEmailsData = {
867
+ requestBody?: UniRefund_TravellerService_EmailCommonDatas_CreateEmailCommonDataDto;
868
+ };
869
+
870
+ export type PostApiTravellerServiceEmailsResponse = UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto;
871
+
872
+ export type GetApiTravellerServiceEmailsByIdData = {
873
+ id: string;
874
+ };
875
+
876
+ export type GetApiTravellerServiceEmailsByIdResponse = UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto;
877
+
878
+ export type PutApiTravellerServiceEmailsByIdData = {
879
+ id: string;
880
+ requestBody?: UniRefund_TravellerService_EmailCommonDatas_UpdateEmailCommonDataDto;
881
+ };
882
+
883
+ export type PutApiTravellerServiceEmailsByIdResponse = UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto;
884
+
885
+ export type DeleteApiTravellerServiceEmailsByIdData = {
886
+ id: string;
887
+ };
888
+
889
+ export type DeleteApiTravellerServiceEmailsByIdResponse = unknown;
890
+
891
+ export type PostApiTravellerServiceIndividualsWithComponentsData = {
892
+ requestBody?: UniRefund_TravellerService_Individuals_CreateIndividualDto;
893
+ };
894
+
895
+ export type PostApiTravellerServiceIndividualsWithComponentsResponse = unknown;
896
+
897
+ export type GetApiTravellerServiceIndividualsData = {
898
+ entityPartyTypeCode?: UniRefund_TravellerService_Enums_EntityPartyTypeCode;
899
+ maxResultCount?: number;
900
+ parentId?: string;
901
+ skipCount?: number;
902
+ sorting?: string;
903
+ };
904
+
905
+ export type GetApiTravellerServiceIndividualsResponse = PagedResultDto_IndividualProfileDto;
906
+
907
+ export type GetApiTravellerServiceTelephonesData = {
908
+ maxResultCount?: number;
909
+ skipCount?: number;
910
+ sorting?: string;
911
+ };
912
+
913
+ export type GetApiTravellerServiceTelephonesResponse = PagedResultDto_TelephoneTypeDto;
914
+
915
+ export type PostApiTravellerServiceTelephonesData = {
916
+ requestBody?: UniRefund_TravellerService_TelephoneTypes_CreateTelephoneTypeDto;
917
+ };
918
+
919
+ export type PostApiTravellerServiceTelephonesResponse = UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto;
920
+
921
+ export type GetApiTravellerServiceTelephonesByIdData = {
922
+ id: string;
923
+ };
924
+
925
+ export type GetApiTravellerServiceTelephonesByIdResponse = UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto;
926
+
927
+ export type PutApiTravellerServiceTelephonesByIdData = {
928
+ id: string;
929
+ requestBody?: UniRefund_TravellerService_TelephoneTypes_UpdateTelephoneTypeDto;
930
+ };
931
+
932
+ export type PutApiTravellerServiceTelephonesByIdResponse = UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto;
933
+
934
+ export type DeleteApiTravellerServiceTelephonesByIdData = {
935
+ id: string;
936
+ };
937
+
938
+ export type DeleteApiTravellerServiceTelephonesByIdResponse = unknown;
939
+
940
+ export type PostApiTravellerServiceTravellersWithComponentsData = {
941
+ requestBody?: UniRefund_TravellerService_Travellers_CreateWithComponentsTravellerDto;
942
+ };
943
+
944
+ export type PostApiTravellerServiceTravellersWithComponentsResponse = UniRefund_TravellerService_Travellers_CreateTravellerResponseDto;
945
+
946
+ export type PostApiTravellerServiceTravellersData = {
947
+ requestBody?: UniRefund_TravellerService_Travellers_CreateTravellerDto;
948
+ };
949
+
950
+ export type PostApiTravellerServiceTravellersResponse = UniRefund_TravellerService_Travellers_CreateTravellerResponseDto;
951
+
952
+ export type GetApiTravellerServiceTravellersData = {
953
+ email?: string;
954
+ fullName?: string;
955
+ maxResultCount?: number;
956
+ nationalities?: Array<(string)>;
957
+ phoneNumber?: string;
958
+ residences?: Array<(string)>;
959
+ showExpired?: boolean;
960
+ skipCount?: number;
961
+ sorting?: string;
962
+ travelDocumentNumber?: string;
963
+ username?: string;
964
+ };
965
+
966
+ export type GetApiTravellerServiceTravellersResponse = PagedResultDto_TravellerListProfileDto;
967
+
968
+ export type PutApiTravellerServiceTravellersByIdUpsertPersonalPreferenceData = {
969
+ id: string;
970
+ requestBody?: UniRefund_TravellerService_PersonalPreferencesTypes_UpsertPersonalPreferenceDto;
971
+ };
972
+
973
+ export type PutApiTravellerServiceTravellersByIdUpsertPersonalPreferenceResponse = UniRefund_TravellerService_PersonalPreferencesTypes_UpsertPersonalPreferenceResponseDto;
974
+
975
+ export type PutApiTravellerServiceTravellersByIdUpsertPersonalSummaryData = {
976
+ id: string;
977
+ requestBody?: UniRefund_TravellerService_PersonalSummaries_UpsertPersonalSummaryDto;
978
+ };
979
+
980
+ export type PutApiTravellerServiceTravellersByIdUpsertPersonalSummaryResponse = UniRefund_TravellerService_PersonalSummaries_UpsertPersonalSummaryResponseDto;
981
+
982
+ export type PostApiTravellerServiceTravellersByIdCreatePersonalIdentificationData = {
983
+ id: string;
984
+ requestBody?: UniRefund_TravellerService_PersonalIdentificationCommonDatas_CreatePersonalIdentificationDto;
985
+ };
986
+
987
+ export type PostApiTravellerServiceTravellersByIdCreatePersonalIdentificationResponse = UniRefund_TravellerService_PersonalIdentificationCommonDatas_CreatePersonalIdentificationResponseDto;
988
+
989
+ export type PutApiTravellerServiceTravellersByIdUpdatePersonalIdentificationData = {
990
+ id: string;
991
+ requestBody?: UniRefund_TravellerService_PersonalIdentificationCommonDatas_UpdatePersonalIdentificationDto;
992
+ };
993
+
994
+ export type PutApiTravellerServiceTravellersByIdUpdatePersonalIdentificationResponse = UniRefund_TravellerService_PersonalIdentificationCommonDatas_UpdatePersonalIdentificationResponseDto;
995
+
996
+ export type DeleteApiTravellerServiceTravellersByIdDeletePersonalIdentificationData = {
997
+ id: string;
998
+ };
999
+
1000
+ export type DeleteApiTravellerServiceTravellersByIdDeletePersonalIdentificationResponse = boolean;
1001
+
1002
+ export type GetApiTravellerServiceTravellersByIdData = {
1003
+ id: string;
1004
+ showExpired?: boolean;
1005
+ };
1006
+
1007
+ export type GetApiTravellerServiceTravellersByIdResponse = UniRefund_TravellerService_Travellers_TravellerDetailProfileDto;
1008
+
1009
+ export type GetIntegrationApiTravellersByIdDetailsData = {
1010
+ id: string;
1011
+ showExpired?: boolean;
1012
+ };
1013
+
1014
+ export type GetIntegrationApiTravellersByIdDetailsResponse = UniRefund_TravellerService_Travellers_TravellerDetailProfileDto;
1015
+
1016
+ export type GetIntegrationApiTravellersByIdExistsData = {
1017
+ id: string;
1018
+ };
1019
+
1020
+ export type GetIntegrationApiTravellersByIdExistsResponse = boolean;
1021
+
1022
+ export type GetIntegrationApiTravellersDocumentNumbersData = {
1023
+ ids?: Array<(string)>;
1024
+ };
1025
+
1026
+ export type GetIntegrationApiTravellersDocumentNumbersResponse = Array<UniRefund_TravellerService_Travellers_TravellerDocumentNumberDto>;
1027
+
1028
+ export type GetIntegrationApiTravellersData = {
1029
+ email?: string;
1030
+ fullName?: string;
1031
+ maxResultCount?: number;
1032
+ nationalities?: Array<(string)>;
1033
+ phoneNumber?: string;
1034
+ residences?: Array<(string)>;
1035
+ showExpired?: boolean;
1036
+ skipCount?: number;
1037
+ sorting?: string;
1038
+ travelDocumentNumber?: string;
1039
+ username?: string;
1040
+ };
1041
+
1042
+ export type GetIntegrationApiTravellersResponse = PagedResultDto_TravellerListProfileDto;
1043
+
1044
+ export type PostIntegrationApiTravellersUpsertData = {
1045
+ requestBody?: UniRefund_TravellerService_Travellers_UpsertTravellerDto;
1046
+ };
1047
+
1048
+ export type PostIntegrationApiTravellersUpsertResponse = UniRefund_TravellerService_Travellers_UpsertTravellerResponseDto;
1049
+
1050
+ export type $OpenApiTs = {
1051
+ '/api/abp/api-definition': {
1052
+ get: {
1053
+ req: GetApiAbpApiDefinitionData;
1054
+ res: {
1055
+ /**
1056
+ * Success
1057
+ */
1058
+ 200: Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
1059
+ /**
1060
+ * Bad Request
1061
+ */
1062
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1063
+ /**
1064
+ * Unauthorized
1065
+ */
1066
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1067
+ /**
1068
+ * Forbidden
1069
+ */
1070
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1071
+ /**
1072
+ * Not Found
1073
+ */
1074
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1075
+ /**
1076
+ * Server Error
1077
+ */
1078
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1079
+ /**
1080
+ * Server Error
1081
+ */
1082
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1083
+ };
1084
+ };
1085
+ };
1086
+ '/api/abp/application-configuration': {
1087
+ get: {
1088
+ req: GetApiAbpApplicationConfigurationData;
1089
+ res: {
1090
+ /**
1091
+ * Success
1092
+ */
1093
+ 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
1094
+ /**
1095
+ * Bad Request
1096
+ */
1097
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1098
+ /**
1099
+ * Unauthorized
1100
+ */
1101
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1102
+ /**
1103
+ * Forbidden
1104
+ */
1105
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1106
+ /**
1107
+ * Not Found
1108
+ */
1109
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1110
+ /**
1111
+ * Server Error
1112
+ */
1113
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1114
+ /**
1115
+ * Server Error
1116
+ */
1117
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1118
+ };
1119
+ };
1120
+ };
1121
+ '/api/abp/application-localization': {
1122
+ get: {
1123
+ req: GetApiAbpApplicationLocalizationData;
1124
+ res: {
1125
+ /**
1126
+ * Success
1127
+ */
1128
+ 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
1129
+ /**
1130
+ * Bad Request
1131
+ */
1132
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1133
+ /**
1134
+ * Unauthorized
1135
+ */
1136
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1137
+ /**
1138
+ * Forbidden
1139
+ */
1140
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1141
+ /**
1142
+ * Not Found
1143
+ */
1144
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1145
+ /**
1146
+ * Server Error
1147
+ */
1148
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1149
+ /**
1150
+ * Server Error
1151
+ */
1152
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1153
+ };
1154
+ };
1155
+ };
1156
+ '/api/traveller-service/addresses': {
1157
+ get: {
1158
+ req: GetApiTravellerServiceAddressesData;
1159
+ res: {
1160
+ /**
1161
+ * Success
1162
+ */
1163
+ 200: PagedResultDto_AddressTypeDto;
1164
+ /**
1165
+ * Bad Request
1166
+ */
1167
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1168
+ /**
1169
+ * Unauthorized
1170
+ */
1171
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1172
+ /**
1173
+ * Forbidden
1174
+ */
1175
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1176
+ /**
1177
+ * Not Found
1178
+ */
1179
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1180
+ /**
1181
+ * Server Error
1182
+ */
1183
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1184
+ /**
1185
+ * Server Error
1186
+ */
1187
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1188
+ };
1189
+ };
1190
+ post: {
1191
+ req: PostApiTravellerServiceAddressesData;
1192
+ res: {
1193
+ /**
1194
+ * Success
1195
+ */
1196
+ 200: UniRefund_TravellerService_AddressTypes_AddressTypeDto;
1197
+ /**
1198
+ * Bad Request
1199
+ */
1200
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1201
+ /**
1202
+ * Unauthorized
1203
+ */
1204
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1205
+ /**
1206
+ * Forbidden
1207
+ */
1208
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1209
+ /**
1210
+ * Not Found
1211
+ */
1212
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1213
+ /**
1214
+ * Server Error
1215
+ */
1216
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1217
+ /**
1218
+ * Server Error
1219
+ */
1220
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1221
+ };
1222
+ };
1223
+ };
1224
+ '/api/traveller-service/addresses/{id}': {
1225
+ get: {
1226
+ req: GetApiTravellerServiceAddressesByIdData;
1227
+ res: {
1228
+ /**
1229
+ * Success
1230
+ */
1231
+ 200: UniRefund_TravellerService_AddressTypes_AddressTypeDto;
1232
+ /**
1233
+ * Bad Request
1234
+ */
1235
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1236
+ /**
1237
+ * Unauthorized
1238
+ */
1239
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1240
+ /**
1241
+ * Forbidden
1242
+ */
1243
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1244
+ /**
1245
+ * Not Found
1246
+ */
1247
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1248
+ /**
1249
+ * Server Error
1250
+ */
1251
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1252
+ /**
1253
+ * Server Error
1254
+ */
1255
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1256
+ };
1257
+ };
1258
+ put: {
1259
+ req: PutApiTravellerServiceAddressesByIdData;
1260
+ res: {
1261
+ /**
1262
+ * Success
1263
+ */
1264
+ 200: UniRefund_TravellerService_AddressTypes_AddressTypeDto;
1265
+ /**
1266
+ * Bad Request
1267
+ */
1268
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1269
+ /**
1270
+ * Unauthorized
1271
+ */
1272
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1273
+ /**
1274
+ * Forbidden
1275
+ */
1276
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1277
+ /**
1278
+ * Not Found
1279
+ */
1280
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1281
+ /**
1282
+ * Server Error
1283
+ */
1284
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1285
+ /**
1286
+ * Server Error
1287
+ */
1288
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1289
+ };
1290
+ };
1291
+ delete: {
1292
+ req: DeleteApiTravellerServiceAddressesByIdData;
1293
+ res: {
1294
+ /**
1295
+ * Success
1296
+ */
1297
+ 200: unknown;
1298
+ /**
1299
+ * Bad Request
1300
+ */
1301
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1302
+ /**
1303
+ * Unauthorized
1304
+ */
1305
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1306
+ /**
1307
+ * Forbidden
1308
+ */
1309
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1310
+ /**
1311
+ * Not Found
1312
+ */
1313
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1314
+ /**
1315
+ * Server Error
1316
+ */
1317
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1318
+ /**
1319
+ * Server Error
1320
+ */
1321
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1322
+ };
1323
+ };
1324
+ };
1325
+ '/api/traveller-service/emails': {
1326
+ get: {
1327
+ req: GetApiTravellerServiceEmailsData;
1328
+ res: {
1329
+ /**
1330
+ * Success
1331
+ */
1332
+ 200: PagedResultDto_EmailCommonDataDto;
1333
+ /**
1334
+ * Bad Request
1335
+ */
1336
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1337
+ /**
1338
+ * Unauthorized
1339
+ */
1340
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1341
+ /**
1342
+ * Forbidden
1343
+ */
1344
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1345
+ /**
1346
+ * Not Found
1347
+ */
1348
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1349
+ /**
1350
+ * Server Error
1351
+ */
1352
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1353
+ /**
1354
+ * Server Error
1355
+ */
1356
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1357
+ };
1358
+ };
1359
+ post: {
1360
+ req: PostApiTravellerServiceEmailsData;
1361
+ res: {
1362
+ /**
1363
+ * Success
1364
+ */
1365
+ 200: UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto;
1366
+ /**
1367
+ * Bad Request
1368
+ */
1369
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1370
+ /**
1371
+ * Unauthorized
1372
+ */
1373
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1374
+ /**
1375
+ * Forbidden
1376
+ */
1377
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1378
+ /**
1379
+ * Not Found
1380
+ */
1381
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1382
+ /**
1383
+ * Server Error
1384
+ */
1385
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1386
+ /**
1387
+ * Server Error
1388
+ */
1389
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1390
+ };
1391
+ };
1392
+ };
1393
+ '/api/traveller-service/emails/{id}': {
1394
+ get: {
1395
+ req: GetApiTravellerServiceEmailsByIdData;
1396
+ res: {
1397
+ /**
1398
+ * Success
1399
+ */
1400
+ 200: UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto;
1401
+ /**
1402
+ * Bad Request
1403
+ */
1404
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1405
+ /**
1406
+ * Unauthorized
1407
+ */
1408
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1409
+ /**
1410
+ * Forbidden
1411
+ */
1412
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1413
+ /**
1414
+ * Not Found
1415
+ */
1416
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1417
+ /**
1418
+ * Server Error
1419
+ */
1420
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1421
+ /**
1422
+ * Server Error
1423
+ */
1424
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1425
+ };
1426
+ };
1427
+ put: {
1428
+ req: PutApiTravellerServiceEmailsByIdData;
1429
+ res: {
1430
+ /**
1431
+ * Success
1432
+ */
1433
+ 200: UniRefund_TravellerService_EmailCommonDatas_EmailCommonDataDto;
1434
+ /**
1435
+ * Bad Request
1436
+ */
1437
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1438
+ /**
1439
+ * Unauthorized
1440
+ */
1441
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1442
+ /**
1443
+ * Forbidden
1444
+ */
1445
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1446
+ /**
1447
+ * Not Found
1448
+ */
1449
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1450
+ /**
1451
+ * Server Error
1452
+ */
1453
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1454
+ /**
1455
+ * Server Error
1456
+ */
1457
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1458
+ };
1459
+ };
1460
+ delete: {
1461
+ req: DeleteApiTravellerServiceEmailsByIdData;
1462
+ res: {
1463
+ /**
1464
+ * Success
1465
+ */
1466
+ 200: unknown;
1467
+ /**
1468
+ * Bad Request
1469
+ */
1470
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1471
+ /**
1472
+ * Unauthorized
1473
+ */
1474
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1475
+ /**
1476
+ * Forbidden
1477
+ */
1478
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1479
+ /**
1480
+ * Not Found
1481
+ */
1482
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1483
+ /**
1484
+ * Server Error
1485
+ */
1486
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1487
+ /**
1488
+ * Server Error
1489
+ */
1490
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1491
+ };
1492
+ };
1493
+ };
1494
+ '/api/traveller-service/individuals/with-components': {
1495
+ post: {
1496
+ req: PostApiTravellerServiceIndividualsWithComponentsData;
1497
+ res: {
1498
+ /**
1499
+ * Success
1500
+ */
1501
+ 200: unknown;
1502
+ /**
1503
+ * Bad Request
1504
+ */
1505
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1506
+ /**
1507
+ * Unauthorized
1508
+ */
1509
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1510
+ /**
1511
+ * Forbidden
1512
+ */
1513
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1514
+ /**
1515
+ * Not Found
1516
+ */
1517
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1518
+ /**
1519
+ * Server Error
1520
+ */
1521
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1522
+ /**
1523
+ * Server Error
1524
+ */
1525
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1526
+ };
1527
+ };
1528
+ };
1529
+ '/api/traveller-service/individuals': {
1530
+ get: {
1531
+ req: GetApiTravellerServiceIndividualsData;
1532
+ res: {
1533
+ /**
1534
+ * Success
1535
+ */
1536
+ 200: PagedResultDto_IndividualProfileDto;
1537
+ /**
1538
+ * Bad Request
1539
+ */
1540
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1541
+ /**
1542
+ * Unauthorized
1543
+ */
1544
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1545
+ /**
1546
+ * Forbidden
1547
+ */
1548
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1549
+ /**
1550
+ * Not Found
1551
+ */
1552
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1553
+ /**
1554
+ * Server Error
1555
+ */
1556
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1557
+ /**
1558
+ * Server Error
1559
+ */
1560
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1561
+ };
1562
+ };
1563
+ };
1564
+ '/api/traveller-service/telephones': {
1565
+ get: {
1566
+ req: GetApiTravellerServiceTelephonesData;
1567
+ res: {
1568
+ /**
1569
+ * Success
1570
+ */
1571
+ 200: PagedResultDto_TelephoneTypeDto;
1572
+ /**
1573
+ * Bad Request
1574
+ */
1575
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1576
+ /**
1577
+ * Unauthorized
1578
+ */
1579
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1580
+ /**
1581
+ * Forbidden
1582
+ */
1583
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1584
+ /**
1585
+ * Not Found
1586
+ */
1587
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1588
+ /**
1589
+ * Server Error
1590
+ */
1591
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1592
+ /**
1593
+ * Server Error
1594
+ */
1595
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1596
+ };
1597
+ };
1598
+ post: {
1599
+ req: PostApiTravellerServiceTelephonesData;
1600
+ res: {
1601
+ /**
1602
+ * Success
1603
+ */
1604
+ 200: UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto;
1605
+ /**
1606
+ * Bad Request
1607
+ */
1608
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1609
+ /**
1610
+ * Unauthorized
1611
+ */
1612
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1613
+ /**
1614
+ * Forbidden
1615
+ */
1616
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1617
+ /**
1618
+ * Not Found
1619
+ */
1620
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1621
+ /**
1622
+ * Server Error
1623
+ */
1624
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1625
+ /**
1626
+ * Server Error
1627
+ */
1628
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1629
+ };
1630
+ };
1631
+ };
1632
+ '/api/traveller-service/telephones/{id}': {
1633
+ get: {
1634
+ req: GetApiTravellerServiceTelephonesByIdData;
1635
+ res: {
1636
+ /**
1637
+ * Success
1638
+ */
1639
+ 200: UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto;
1640
+ /**
1641
+ * Bad Request
1642
+ */
1643
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1644
+ /**
1645
+ * Unauthorized
1646
+ */
1647
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1648
+ /**
1649
+ * Forbidden
1650
+ */
1651
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1652
+ /**
1653
+ * Not Found
1654
+ */
1655
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1656
+ /**
1657
+ * Server Error
1658
+ */
1659
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1660
+ /**
1661
+ * Server Error
1662
+ */
1663
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1664
+ };
1665
+ };
1666
+ put: {
1667
+ req: PutApiTravellerServiceTelephonesByIdData;
1668
+ res: {
1669
+ /**
1670
+ * Success
1671
+ */
1672
+ 200: UniRefund_TravellerService_TelephoneTypes_TelephoneTypeDto;
1673
+ /**
1674
+ * Bad Request
1675
+ */
1676
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1677
+ /**
1678
+ * Unauthorized
1679
+ */
1680
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1681
+ /**
1682
+ * Forbidden
1683
+ */
1684
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1685
+ /**
1686
+ * Not Found
1687
+ */
1688
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1689
+ /**
1690
+ * Server Error
1691
+ */
1692
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1693
+ /**
1694
+ * Server Error
1695
+ */
1696
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1697
+ };
1698
+ };
1699
+ delete: {
1700
+ req: DeleteApiTravellerServiceTelephonesByIdData;
1701
+ res: {
1702
+ /**
1703
+ * Success
1704
+ */
1705
+ 200: unknown;
1706
+ /**
1707
+ * Bad Request
1708
+ */
1709
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1710
+ /**
1711
+ * Unauthorized
1712
+ */
1713
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1714
+ /**
1715
+ * Forbidden
1716
+ */
1717
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1718
+ /**
1719
+ * Not Found
1720
+ */
1721
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1722
+ /**
1723
+ * Server Error
1724
+ */
1725
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1726
+ /**
1727
+ * Server Error
1728
+ */
1729
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1730
+ };
1731
+ };
1732
+ };
1733
+ '/api/traveller-service/travellers/with-components': {
1734
+ post: {
1735
+ req: PostApiTravellerServiceTravellersWithComponentsData;
1736
+ res: {
1737
+ /**
1738
+ * Success
1739
+ */
1740
+ 200: UniRefund_TravellerService_Travellers_CreateTravellerResponseDto;
1741
+ /**
1742
+ * Bad Request
1743
+ */
1744
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1745
+ /**
1746
+ * Unauthorized
1747
+ */
1748
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1749
+ /**
1750
+ * Forbidden
1751
+ */
1752
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1753
+ /**
1754
+ * Not Found
1755
+ */
1756
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1757
+ /**
1758
+ * Server Error
1759
+ */
1760
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1761
+ /**
1762
+ * Server Error
1763
+ */
1764
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1765
+ };
1766
+ };
1767
+ };
1768
+ '/api/traveller-service/travellers': {
1769
+ post: {
1770
+ req: PostApiTravellerServiceTravellersData;
1771
+ res: {
1772
+ /**
1773
+ * Success
1774
+ */
1775
+ 200: UniRefund_TravellerService_Travellers_CreateTravellerResponseDto;
1776
+ /**
1777
+ * Bad Request
1778
+ */
1779
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1780
+ /**
1781
+ * Unauthorized
1782
+ */
1783
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1784
+ /**
1785
+ * Forbidden
1786
+ */
1787
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1788
+ /**
1789
+ * Not Found
1790
+ */
1791
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1792
+ /**
1793
+ * Server Error
1794
+ */
1795
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1796
+ /**
1797
+ * Server Error
1798
+ */
1799
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1800
+ };
1801
+ };
1802
+ get: {
1803
+ req: GetApiTravellerServiceTravellersData;
1804
+ res: {
1805
+ /**
1806
+ * Success
1807
+ */
1808
+ 200: PagedResultDto_TravellerListProfileDto;
1809
+ /**
1810
+ * Bad Request
1811
+ */
1812
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1813
+ /**
1814
+ * Unauthorized
1815
+ */
1816
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1817
+ /**
1818
+ * Forbidden
1819
+ */
1820
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1821
+ /**
1822
+ * Not Found
1823
+ */
1824
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1825
+ /**
1826
+ * Server Error
1827
+ */
1828
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1829
+ /**
1830
+ * Server Error
1831
+ */
1832
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1833
+ };
1834
+ };
1835
+ };
1836
+ '/api/traveller-service/travellers/{id}/upsert-personal-preference': {
1837
+ put: {
1838
+ req: PutApiTravellerServiceTravellersByIdUpsertPersonalPreferenceData;
1839
+ res: {
1840
+ /**
1841
+ * Success
1842
+ */
1843
+ 200: UniRefund_TravellerService_PersonalPreferencesTypes_UpsertPersonalPreferenceResponseDto;
1844
+ /**
1845
+ * Bad Request
1846
+ */
1847
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1848
+ /**
1849
+ * Unauthorized
1850
+ */
1851
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1852
+ /**
1853
+ * Forbidden
1854
+ */
1855
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1856
+ /**
1857
+ * Not Found
1858
+ */
1859
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1860
+ /**
1861
+ * Server Error
1862
+ */
1863
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1864
+ /**
1865
+ * Server Error
1866
+ */
1867
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1868
+ };
1869
+ };
1870
+ };
1871
+ '/api/traveller-service/travellers/{id}/upsert-personal-summary': {
1872
+ put: {
1873
+ req: PutApiTravellerServiceTravellersByIdUpsertPersonalSummaryData;
1874
+ res: {
1875
+ /**
1876
+ * Success
1877
+ */
1878
+ 200: UniRefund_TravellerService_PersonalSummaries_UpsertPersonalSummaryResponseDto;
1879
+ /**
1880
+ * Bad Request
1881
+ */
1882
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1883
+ /**
1884
+ * Unauthorized
1885
+ */
1886
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1887
+ /**
1888
+ * Forbidden
1889
+ */
1890
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1891
+ /**
1892
+ * Not Found
1893
+ */
1894
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1895
+ /**
1896
+ * Server Error
1897
+ */
1898
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1899
+ /**
1900
+ * Server Error
1901
+ */
1902
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1903
+ };
1904
+ };
1905
+ };
1906
+ '/api/traveller-service/travellers/{id}/create-personal-identification': {
1907
+ post: {
1908
+ req: PostApiTravellerServiceTravellersByIdCreatePersonalIdentificationData;
1909
+ res: {
1910
+ /**
1911
+ * Success
1912
+ */
1913
+ 200: UniRefund_TravellerService_PersonalIdentificationCommonDatas_CreatePersonalIdentificationResponseDto;
1914
+ /**
1915
+ * Bad Request
1916
+ */
1917
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1918
+ /**
1919
+ * Unauthorized
1920
+ */
1921
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1922
+ /**
1923
+ * Forbidden
1924
+ */
1925
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1926
+ /**
1927
+ * Not Found
1928
+ */
1929
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1930
+ /**
1931
+ * Server Error
1932
+ */
1933
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1934
+ /**
1935
+ * Server Error
1936
+ */
1937
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1938
+ };
1939
+ };
1940
+ };
1941
+ '/api/traveller-service/travellers/{id}/update-personal-identification': {
1942
+ put: {
1943
+ req: PutApiTravellerServiceTravellersByIdUpdatePersonalIdentificationData;
1944
+ res: {
1945
+ /**
1946
+ * Success
1947
+ */
1948
+ 200: UniRefund_TravellerService_PersonalIdentificationCommonDatas_UpdatePersonalIdentificationResponseDto;
1949
+ /**
1950
+ * Bad Request
1951
+ */
1952
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1953
+ /**
1954
+ * Unauthorized
1955
+ */
1956
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1957
+ /**
1958
+ * Forbidden
1959
+ */
1960
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1961
+ /**
1962
+ * Not Found
1963
+ */
1964
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1965
+ /**
1966
+ * Server Error
1967
+ */
1968
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1969
+ /**
1970
+ * Server Error
1971
+ */
1972
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1973
+ };
1974
+ };
1975
+ };
1976
+ '/api/traveller-service/travellers/{id}/delete-personal-identification': {
1977
+ delete: {
1978
+ req: DeleteApiTravellerServiceTravellersByIdDeletePersonalIdentificationData;
1979
+ res: {
1980
+ /**
1981
+ * Success
1982
+ */
1983
+ 200: boolean;
1984
+ /**
1985
+ * Bad Request
1986
+ */
1987
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1988
+ /**
1989
+ * Unauthorized
1990
+ */
1991
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1992
+ /**
1993
+ * Forbidden
1994
+ */
1995
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1996
+ /**
1997
+ * Not Found
1998
+ */
1999
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2000
+ /**
2001
+ * Server Error
2002
+ */
2003
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2004
+ /**
2005
+ * Server Error
2006
+ */
2007
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2008
+ };
2009
+ };
2010
+ };
2011
+ '/api/traveller-service/travellers/{id}': {
2012
+ get: {
2013
+ req: GetApiTravellerServiceTravellersByIdData;
2014
+ res: {
2015
+ /**
2016
+ * Success
2017
+ */
2018
+ 200: UniRefund_TravellerService_Travellers_TravellerDetailProfileDto;
2019
+ /**
2020
+ * Bad Request
2021
+ */
2022
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2023
+ /**
2024
+ * Unauthorized
2025
+ */
2026
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2027
+ /**
2028
+ * Forbidden
2029
+ */
2030
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2031
+ /**
2032
+ * Not Found
2033
+ */
2034
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2035
+ /**
2036
+ * Server Error
2037
+ */
2038
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2039
+ /**
2040
+ * Server Error
2041
+ */
2042
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2043
+ };
2044
+ };
2045
+ };
2046
+ '/integration-api/travellers/{id}/details': {
2047
+ get: {
2048
+ req: GetIntegrationApiTravellersByIdDetailsData;
2049
+ res: {
2050
+ /**
2051
+ * Success
2052
+ */
2053
+ 200: UniRefund_TravellerService_Travellers_TravellerDetailProfileDto;
2054
+ /**
2055
+ * Bad Request
2056
+ */
2057
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2058
+ /**
2059
+ * Unauthorized
2060
+ */
2061
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2062
+ /**
2063
+ * Forbidden
2064
+ */
2065
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2066
+ /**
2067
+ * Not Found
2068
+ */
2069
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2070
+ /**
2071
+ * Server Error
2072
+ */
2073
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2074
+ /**
2075
+ * Server Error
2076
+ */
2077
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2078
+ };
2079
+ };
2080
+ };
2081
+ '/integration-api/travellers/{id}/exists': {
2082
+ get: {
2083
+ req: GetIntegrationApiTravellersByIdExistsData;
2084
+ res: {
2085
+ /**
2086
+ * Success
2087
+ */
2088
+ 200: boolean;
2089
+ /**
2090
+ * Bad Request
2091
+ */
2092
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2093
+ /**
2094
+ * Unauthorized
2095
+ */
2096
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2097
+ /**
2098
+ * Forbidden
2099
+ */
2100
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2101
+ /**
2102
+ * Not Found
2103
+ */
2104
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2105
+ /**
2106
+ * Server Error
2107
+ */
2108
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2109
+ /**
2110
+ * Server Error
2111
+ */
2112
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2113
+ };
2114
+ };
2115
+ };
2116
+ '/integration-api/travellers/document-numbers': {
2117
+ get: {
2118
+ req: GetIntegrationApiTravellersDocumentNumbersData;
2119
+ res: {
2120
+ /**
2121
+ * Success
2122
+ */
2123
+ 200: Array<UniRefund_TravellerService_Travellers_TravellerDocumentNumberDto>;
2124
+ /**
2125
+ * Bad Request
2126
+ */
2127
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2128
+ /**
2129
+ * Unauthorized
2130
+ */
2131
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2132
+ /**
2133
+ * Forbidden
2134
+ */
2135
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2136
+ /**
2137
+ * Not Found
2138
+ */
2139
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2140
+ /**
2141
+ * Server Error
2142
+ */
2143
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2144
+ /**
2145
+ * Server Error
2146
+ */
2147
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2148
+ };
2149
+ };
2150
+ };
2151
+ '/integration-api/travellers': {
2152
+ get: {
2153
+ req: GetIntegrationApiTravellersData;
2154
+ res: {
2155
+ /**
2156
+ * Success
2157
+ */
2158
+ 200: PagedResultDto_TravellerListProfileDto;
2159
+ /**
2160
+ * Bad Request
2161
+ */
2162
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2163
+ /**
2164
+ * Unauthorized
2165
+ */
2166
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2167
+ /**
2168
+ * Forbidden
2169
+ */
2170
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2171
+ /**
2172
+ * Not Found
2173
+ */
2174
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2175
+ /**
2176
+ * Server Error
2177
+ */
2178
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2179
+ /**
2180
+ * Server Error
2181
+ */
2182
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2183
+ };
2184
+ };
2185
+ };
2186
+ '/integration-api/travellers/upsert': {
2187
+ post: {
2188
+ req: PostIntegrationApiTravellersUpsertData;
2189
+ res: {
2190
+ /**
2191
+ * Success
2192
+ */
2193
+ 200: UniRefund_TravellerService_Travellers_UpsertTravellerResponseDto;
2194
+ /**
2195
+ * Bad Request
2196
+ */
2197
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2198
+ /**
2199
+ * Unauthorized
2200
+ */
2201
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2202
+ /**
2203
+ * Forbidden
2204
+ */
2205
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2206
+ /**
2207
+ * Not Found
2208
+ */
2209
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2210
+ /**
2211
+ * Server Error
2212
+ */
2213
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2214
+ /**
2215
+ * Server Error
2216
+ */
2217
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2218
+ };
2219
+ };
2220
+ };
2221
2221
  };