@ayasofyazilim/saas 0.0.3 → 0.0.4
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.
- package/AccountService/index.ts +117 -115
- package/AccountService/services/AccountService.ts +2 -2
- package/AccountService/services/UserService.ts +8 -8
- package/AdministrationService/AdministrationServiceClient.ts +67 -0
- package/AdministrationService/core/ApiError.ts +25 -0
- package/AdministrationService/core/ApiRequestOptions.ts +17 -0
- package/AdministrationService/core/ApiResult.ts +11 -0
- package/AdministrationService/core/BaseHttpRequest.ts +14 -0
- package/AdministrationService/core/CancelablePromise.ts +131 -0
- package/AdministrationService/core/FetchHttpRequest.ts +26 -0
- package/AdministrationService/core/OpenAPI.ts +32 -0
- package/AdministrationService/core/request.ts +322 -0
- package/AdministrationService/index.ts +123 -0
- package/AdministrationService/models/System_Net_HttpStatusCode.ts +67 -0
- package/AdministrationService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -0
- package/AdministrationService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto.ts +11 -0
- package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -0
- package/AdministrationService/models/Volo_Abp_AuditLogging_AuditLogActionDto.ts +16 -0
- package/AdministrationService/models/Volo_Abp_AuditLogging_AuditLogDto.ts +33 -0
- package/AdministrationService/models/Volo_Abp_AuditLogging_EntityChangeDto.ts +18 -0
- package/AdministrationService/models/Volo_Abp_AuditLogging_EntityChangeWithUsernameDto.ts +10 -0
- package/AdministrationService/models/Volo_Abp_AuditLogging_EntityPropertyChangeDto.ts +14 -0
- package/AdministrationService/models/Volo_Abp_AuditLogging_GetAverageExecutionDurationPerDayOutput.ts +8 -0
- package/AdministrationService/models/Volo_Abp_AuditLogging_GetErrorRateOutput.ts +8 -0
- package/AdministrationService/models/Volo_Abp_Auditing_EntityChangeType.ts +9 -0
- package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureDto.ts +17 -0
- package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureGroupDto.ts +11 -0
- package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureProviderDto.ts +9 -0
- package/AdministrationService/models/Volo_Abp_FeatureManagement_GetFeatureListResultDto.ts +9 -0
- package/AdministrationService/models/Volo_Abp_FeatureManagement_UpdateFeatureDto.ts +9 -0
- package/AdministrationService/models/Volo_Abp_FeatureManagement_UpdateFeaturesDto.ts +9 -0
- package/AdministrationService/models/Volo_Abp_Gdpr_DownloadTokenResultDto.ts +8 -0
- package/AdministrationService/models/Volo_Abp_Gdpr_GdprRequestDto.ts +10 -0
- package/AdministrationService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -0
- package/AdministrationService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -0
- package/AdministrationService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -0
- package/AdministrationService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -0
- package/AdministrationService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -0
- package/AdministrationService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -0
- package/AdministrationService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -0
- package/AdministrationService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -0
- package/AdministrationService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -0
- package/AdministrationService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -0
- package/AdministrationService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -0
- package/AdministrationService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -0
- package/AdministrationService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -0
- package/AdministrationService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -0
- package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_CreateLanguageDto.ts +13 -0
- package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_CultureInfoDto.ts +9 -0
- package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageDto.ts +18 -0
- package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageResourceDto.ts +8 -0
- package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageTextDto.ts +13 -0
- package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_UpdateLanguageDto.ts +12 -0
- package/AdministrationService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -0
- package/AdministrationService/models/Volo_Abp_NameValue.ts +9 -0
- package/AdministrationService/models/Volo_Abp_PermissionManagement_GetPermissionListResultDto.ts +10 -0
- package/AdministrationService/models/Volo_Abp_PermissionManagement_PermissionGrantInfoDto.ts +14 -0
- package/AdministrationService/models/Volo_Abp_PermissionManagement_PermissionGroupDto.ts +13 -0
- package/AdministrationService/models/Volo_Abp_PermissionManagement_ProviderInfoDto.ts +9 -0
- package/AdministrationService/models/Volo_Abp_PermissionManagement_UpdatePermissionDto.ts +9 -0
- package/AdministrationService/models/Volo_Abp_PermissionManagement_UpdatePermissionsDto.ts +9 -0
- package/AdministrationService/models/Volo_Abp_SettingManagement_EmailSettingsDto.ts +16 -0
- package/AdministrationService/models/Volo_Abp_SettingManagement_SendTestEmailInput.ts +11 -0
- package/AdministrationService/models/Volo_Abp_SettingManagement_UpdateEmailSettingsDto.ts +16 -0
- package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_RestoreTemplateContentInput.ts +9 -0
- package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_TemplateDefinitionDto.ts +13 -0
- package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_TextTemplateContentDto.ts +10 -0
- package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_UpdateTemplateContentInput.ts +10 -0
- package/AdministrationService/models/Volo_Abp_Validation_StringValues_IStringValueType.ts +11 -0
- package/AdministrationService/models/Volo_Abp_Validation_StringValues_IValueValidator.ts +9 -0
- package/AdministrationService/services/AbpApiDefinitionService.ts +34 -0
- package/AdministrationService/services/AbpApplicationConfigurationService.ts +34 -0
- package/AdministrationService/services/AbpApplicationLocalizationService.ts +37 -0
- package/AdministrationService/services/AbpTenantService.ts +58 -0
- package/AdministrationService/services/AuditLogsService.ts +286 -0
- package/AdministrationService/services/EmailSettingsService.ts +76 -0
- package/AdministrationService/services/FeaturesService.ts +96 -0
- package/AdministrationService/services/GdprRequestService.ts +152 -0
- package/AdministrationService/services/LanguageTextsService.ts +157 -0
- package/AdministrationService/services/LanguagesService.ts +257 -0
- package/AdministrationService/services/PermissionsService.ts +69 -0
- package/AdministrationService/services/TextTemplateContentsService.ts +85 -0
- package/AdministrationService/services/TextTemplateDefinitionsService.ts +69 -0
- package/AdministrationService/services/TimeZoneSettingsService.ts +70 -0
- package/ProjectService/ProjectServiceClient.ts +6 -0
- package/ProjectService/index.ts +11 -0
- package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectSectionRelations_CreateProjectSectionRelationDto.ts +10 -0
- package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectSectionRelations_ProjectSectionRelationDto.ts +11 -0
- package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectSectionRelations_UpdateProjectSectionRelationDto.ts +10 -0
- package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectSections_CreateProjectSectionDto.ts +10 -0
- package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectSections_ProjectSectionDetailDto.ts +9 -0
- package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectSections_ProjectSectionDto.ts +11 -0
- package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectSections_UpdateProjectSectionDto.ts +10 -0
- package/ProjectService/models/UpWithCrowdDemo_ProjectService_Projects_ProjectDto.ts +2 -0
- package/ProjectService/services/ProjectSectionRelationServiceService.ts +143 -0
- package/ProjectService/services/ProjectSectionServiceService.ts +143 -0
- package/package.json +9 -6
package/AccountService/index.ts
CHANGED
|
@@ -2,121 +2,123 @@
|
|
|
2
2
|
/* istanbul ignore file */
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
|
-
export { AccountServiceClient } from
|
|
5
|
+
export { AccountServiceClient } from './AccountServiceClient';
|
|
6
6
|
|
|
7
|
-
export { ApiError } from
|
|
8
|
-
export { BaseHttpRequest } from
|
|
9
|
-
export { CancelablePromise, CancelError } from
|
|
10
|
-
export { OpenAPI } from
|
|
11
|
-
export type { OpenAPIConfig } from
|
|
7
|
+
export { ApiError } from './core/ApiError';
|
|
8
|
+
export { BaseHttpRequest } from './core/BaseHttpRequest';
|
|
9
|
+
export { CancelablePromise, CancelError } from './core/CancelablePromise';
|
|
10
|
+
export { OpenAPI } from './core/OpenAPI';
|
|
11
|
+
export type { OpenAPIConfig } from './core/OpenAPI';
|
|
12
12
|
|
|
13
|
-
export type { Volo_Abp_Account_AccountExternalProviderSettingsDto } from
|
|
14
|
-
export type { Volo_Abp_Account_AccountRecaptchaSettingsDto } from
|
|
15
|
-
export type { Volo_Abp_Account_AccountSettingsDto } from
|
|
16
|
-
export type { Volo_Abp_Account_AccountTwoFactorSettingsDto } from
|
|
17
|
-
export type { Volo_Abp_Account_AuthenticatorInfoDto } from
|
|
18
|
-
export type { Volo_Abp_Account_ChangePasswordInput } from
|
|
19
|
-
export type { Volo_Abp_Account_ConfirmEmailInput } from
|
|
20
|
-
export type { Volo_Abp_Account_ConfirmPhoneNumberInput } from
|
|
21
|
-
export type { Volo_Abp_Account_DelegateNewUserInput } from
|
|
22
|
-
export type { Volo_Abp_Account_ExternalProviders_ExternalProviderDto } from
|
|
23
|
-
export type { Volo_Abp_Account_ExternalProviders_ExternalProviderItemDto } from
|
|
24
|
-
export type { Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto } from
|
|
25
|
-
export type { Volo_Abp_Account_ExternalProviders_ExternalProviderSettings } from
|
|
26
|
-
export type { Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty } from
|
|
27
|
-
export type { Volo_Abp_Account_IdentityUserConfirmationStateDto } from
|
|
28
|
-
export type { Volo_Abp_Account_IsLinkedInput } from
|
|
29
|
-
export type { Volo_Abp_Account_LinkUserDto } from
|
|
30
|
-
export type { Volo_Abp_Account_LinkUserInput } from
|
|
31
|
-
export type { Volo_Abp_Account_ProfileDto } from
|
|
32
|
-
export type { Volo_Abp_Account_ProfilePictureSourceDto } from
|
|
33
|
-
export { Volo_Abp_Account_ProfilePictureType } from
|
|
34
|
-
export type { Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult } from
|
|
35
|
-
export type { Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LinkUserLoginInfo } from
|
|
36
|
-
export { Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LoginResultType } from
|
|
37
|
-
export type { Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_UserLoginInfo } from
|
|
38
|
-
export type { Volo_Abp_Account_RegisterDto } from
|
|
39
|
-
export type { Volo_Abp_Account_ResetPasswordDto } from
|
|
40
|
-
export type { Volo_Abp_Account_SendEmailConfirmationTokenDto } from
|
|
41
|
-
export type { Volo_Abp_Account_SendPasswordResetCodeDto } from
|
|
42
|
-
export type { Volo_Abp_Account_SendPhoneNumberConfirmationTokenDto } from
|
|
43
|
-
export type { Volo_Abp_Account_SendTwoFactorCodeInput } from
|
|
44
|
-
export type { Volo_Abp_Account_UnLinkUserInput } from
|
|
45
|
-
export type { Volo_Abp_Account_UpdateExternalProviderDto } from
|
|
46
|
-
export type { Volo_Abp_Account_UpdateProfileDto } from
|
|
47
|
-
export type { Volo_Abp_Account_UserDelegationDto } from
|
|
48
|
-
export type { Volo_Abp_Account_UserLookupDto } from
|
|
49
|
-
export type { Volo_Abp_Account_VerifyAuthenticatorCodeDto } from
|
|
50
|
-
export type { Volo_Abp_Account_VerifyAuthenticatorCodeInput } from
|
|
51
|
-
export type { Volo_Abp_Account_VerifyEmailConfirmationTokenInput } from
|
|
52
|
-
export type { Volo_Abp_Account_VerifyLinkLoginTokenInput } from
|
|
53
|
-
export type { Volo_Abp_Account_VerifyLinkTokenInput } from
|
|
54
|
-
export type { Volo_Abp_Account_VerifyPasswordResetTokenInput } from
|
|
55
|
-
export type { Volo_Abp_Application_Dtos_ListResultDto_1 } from
|
|
56
|
-
export type {
|
|
57
|
-
export type {
|
|
58
|
-
export type {
|
|
59
|
-
export type {
|
|
60
|
-
export type {
|
|
61
|
-
export type {
|
|
62
|
-
export type {
|
|
63
|
-
export type {
|
|
64
|
-
export type {
|
|
65
|
-
export type {
|
|
66
|
-
export type {
|
|
67
|
-
export type {
|
|
68
|
-
export type {
|
|
69
|
-
export type {
|
|
70
|
-
export type {
|
|
71
|
-
export type {
|
|
72
|
-
export type {
|
|
73
|
-
export type {
|
|
74
|
-
export type {
|
|
75
|
-
export type {
|
|
76
|
-
export type {
|
|
77
|
-
export type {
|
|
78
|
-
export type {
|
|
79
|
-
export type {
|
|
80
|
-
export type {
|
|
81
|
-
export type {
|
|
82
|
-
export type {
|
|
83
|
-
export type {
|
|
84
|
-
export type {
|
|
85
|
-
export type {
|
|
86
|
-
export type {
|
|
87
|
-
export type {
|
|
88
|
-
export type {
|
|
89
|
-
export type {
|
|
90
|
-
export type {
|
|
91
|
-
export type {
|
|
92
|
-
export type {
|
|
93
|
-
export type {
|
|
94
|
-
export type {
|
|
95
|
-
export type {
|
|
96
|
-
export type {
|
|
97
|
-
export type {
|
|
98
|
-
export type {
|
|
99
|
-
export type {
|
|
100
|
-
export type {
|
|
101
|
-
export type {
|
|
102
|
-
export type {
|
|
103
|
-
export type {
|
|
104
|
-
export type {
|
|
105
|
-
export type {
|
|
106
|
-
export {
|
|
107
|
-
export type {
|
|
108
|
-
export
|
|
109
|
-
export type {
|
|
110
|
-
export type {
|
|
13
|
+
export type { Volo_Abp_Account_AccountExternalProviderSettingsDto } from './models/Volo_Abp_Account_AccountExternalProviderSettingsDto';
|
|
14
|
+
export type { Volo_Abp_Account_AccountRecaptchaSettingsDto } from './models/Volo_Abp_Account_AccountRecaptchaSettingsDto';
|
|
15
|
+
export type { Volo_Abp_Account_AccountSettingsDto } from './models/Volo_Abp_Account_AccountSettingsDto';
|
|
16
|
+
export type { Volo_Abp_Account_AccountTwoFactorSettingsDto } from './models/Volo_Abp_Account_AccountTwoFactorSettingsDto';
|
|
17
|
+
export type { Volo_Abp_Account_AuthenticatorInfoDto } from './models/Volo_Abp_Account_AuthenticatorInfoDto';
|
|
18
|
+
export type { Volo_Abp_Account_ChangePasswordInput } from './models/Volo_Abp_Account_ChangePasswordInput';
|
|
19
|
+
export type { Volo_Abp_Account_ConfirmEmailInput } from './models/Volo_Abp_Account_ConfirmEmailInput';
|
|
20
|
+
export type { Volo_Abp_Account_ConfirmPhoneNumberInput } from './models/Volo_Abp_Account_ConfirmPhoneNumberInput';
|
|
21
|
+
export type { Volo_Abp_Account_DelegateNewUserInput } from './models/Volo_Abp_Account_DelegateNewUserInput';
|
|
22
|
+
export type { Volo_Abp_Account_ExternalProviders_ExternalProviderDto } from './models/Volo_Abp_Account_ExternalProviders_ExternalProviderDto';
|
|
23
|
+
export type { Volo_Abp_Account_ExternalProviders_ExternalProviderItemDto } from './models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemDto';
|
|
24
|
+
export type { Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto } from './models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto';
|
|
25
|
+
export type { Volo_Abp_Account_ExternalProviders_ExternalProviderSettings } from './models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettings';
|
|
26
|
+
export type { Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty } from './models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty';
|
|
27
|
+
export type { Volo_Abp_Account_IdentityUserConfirmationStateDto } from './models/Volo_Abp_Account_IdentityUserConfirmationStateDto';
|
|
28
|
+
export type { Volo_Abp_Account_IsLinkedInput } from './models/Volo_Abp_Account_IsLinkedInput';
|
|
29
|
+
export type { Volo_Abp_Account_LinkUserDto } from './models/Volo_Abp_Account_LinkUserDto';
|
|
30
|
+
export type { Volo_Abp_Account_LinkUserInput } from './models/Volo_Abp_Account_LinkUserInput';
|
|
31
|
+
export type { Volo_Abp_Account_ProfileDto } from './models/Volo_Abp_Account_ProfileDto';
|
|
32
|
+
export type { Volo_Abp_Account_ProfilePictureSourceDto } from './models/Volo_Abp_Account_ProfilePictureSourceDto';
|
|
33
|
+
export { Volo_Abp_Account_ProfilePictureType } from './models/Volo_Abp_Account_ProfilePictureType';
|
|
34
|
+
export type { Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult } from './models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult';
|
|
35
|
+
export type { Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LinkUserLoginInfo } from './models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LinkUserLoginInfo';
|
|
36
|
+
export { Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LoginResultType } from './models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LoginResultType';
|
|
37
|
+
export type { Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_UserLoginInfo } from './models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_UserLoginInfo';
|
|
38
|
+
export type { Volo_Abp_Account_RegisterDto } from './models/Volo_Abp_Account_RegisterDto';
|
|
39
|
+
export type { Volo_Abp_Account_ResetPasswordDto } from './models/Volo_Abp_Account_ResetPasswordDto';
|
|
40
|
+
export type { Volo_Abp_Account_SendEmailConfirmationTokenDto } from './models/Volo_Abp_Account_SendEmailConfirmationTokenDto';
|
|
41
|
+
export type { Volo_Abp_Account_SendPasswordResetCodeDto } from './models/Volo_Abp_Account_SendPasswordResetCodeDto';
|
|
42
|
+
export type { Volo_Abp_Account_SendPhoneNumberConfirmationTokenDto } from './models/Volo_Abp_Account_SendPhoneNumberConfirmationTokenDto';
|
|
43
|
+
export type { Volo_Abp_Account_SendTwoFactorCodeInput } from './models/Volo_Abp_Account_SendTwoFactorCodeInput';
|
|
44
|
+
export type { Volo_Abp_Account_UnLinkUserInput } from './models/Volo_Abp_Account_UnLinkUserInput';
|
|
45
|
+
export type { Volo_Abp_Account_UpdateExternalProviderDto } from './models/Volo_Abp_Account_UpdateExternalProviderDto';
|
|
46
|
+
export type { Volo_Abp_Account_UpdateProfileDto } from './models/Volo_Abp_Account_UpdateProfileDto';
|
|
47
|
+
export type { Volo_Abp_Account_UserDelegationDto } from './models/Volo_Abp_Account_UserDelegationDto';
|
|
48
|
+
export type { Volo_Abp_Account_UserLookupDto } from './models/Volo_Abp_Account_UserLookupDto';
|
|
49
|
+
export type { Volo_Abp_Account_VerifyAuthenticatorCodeDto } from './models/Volo_Abp_Account_VerifyAuthenticatorCodeDto';
|
|
50
|
+
export type { Volo_Abp_Account_VerifyAuthenticatorCodeInput } from './models/Volo_Abp_Account_VerifyAuthenticatorCodeInput';
|
|
51
|
+
export type { Volo_Abp_Account_VerifyEmailConfirmationTokenInput } from './models/Volo_Abp_Account_VerifyEmailConfirmationTokenInput';
|
|
52
|
+
export type { Volo_Abp_Account_VerifyLinkLoginTokenInput } from './models/Volo_Abp_Account_VerifyLinkLoginTokenInput';
|
|
53
|
+
export type { Volo_Abp_Account_VerifyLinkTokenInput } from './models/Volo_Abp_Account_VerifyLinkTokenInput';
|
|
54
|
+
export type { Volo_Abp_Account_VerifyPasswordResetTokenInput } from './models/Volo_Abp_Account_VerifyPasswordResetTokenInput';
|
|
55
|
+
export type { Volo_Abp_Application_Dtos_ListResultDto_1 } from './models/Volo_Abp_Application_Dtos_ListResultDto_1';
|
|
56
|
+
export type { Volo_Abp_Application_Dtos_ListResultDto_1 } from './models/Volo_Abp_Application_Dtos_ListResultDto_1';
|
|
57
|
+
export type { Volo_Abp_Application_Dtos_ListResultDto_1 } from './models/Volo_Abp_Application_Dtos_ListResultDto_1';
|
|
58
|
+
export type { Volo_Abp_Application_Dtos_PagedResultDto_1 } from './models/Volo_Abp_Application_Dtos_PagedResultDto_1';
|
|
59
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto';
|
|
60
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto';
|
|
61
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto';
|
|
62
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto';
|
|
63
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto';
|
|
64
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto';
|
|
65
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto';
|
|
66
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto';
|
|
67
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto';
|
|
68
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto';
|
|
69
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto';
|
|
70
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto';
|
|
71
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone';
|
|
72
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto';
|
|
73
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto';
|
|
74
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto';
|
|
75
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto';
|
|
76
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto';
|
|
77
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto';
|
|
78
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto';
|
|
79
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto';
|
|
80
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto';
|
|
81
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto';
|
|
82
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto';
|
|
83
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto';
|
|
84
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto';
|
|
85
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto';
|
|
86
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto';
|
|
87
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto';
|
|
88
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone';
|
|
89
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto';
|
|
90
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone } from './models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone';
|
|
91
|
+
export type { Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto } from './models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto';
|
|
92
|
+
export type { Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto } from './models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto';
|
|
93
|
+
export type { Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto } from './models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto';
|
|
94
|
+
export type { Volo_Abp_Http_Modeling_ActionApiDescriptionModel } from './models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel';
|
|
95
|
+
export type { Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel } from './models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel';
|
|
96
|
+
export type { Volo_Abp_Http_Modeling_ControllerApiDescriptionModel } from './models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel';
|
|
97
|
+
export type { Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel } from './models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel';
|
|
98
|
+
export type { Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel } from './models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel';
|
|
99
|
+
export type { Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel } from './models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel';
|
|
100
|
+
export type { Volo_Abp_Http_Modeling_ModuleApiDescriptionModel } from './models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel';
|
|
101
|
+
export type { Volo_Abp_Http_Modeling_ParameterApiDescriptionModel } from './models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel';
|
|
102
|
+
export type { Volo_Abp_Http_Modeling_PropertyApiDescriptionModel } from './models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel';
|
|
103
|
+
export type { Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel } from './models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel';
|
|
104
|
+
export type { Volo_Abp_Http_Modeling_TypeApiDescriptionModel } from './models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel';
|
|
105
|
+
export type { Volo_Abp_Http_RemoteServiceErrorInfo } from './models/Volo_Abp_Http_RemoteServiceErrorInfo';
|
|
106
|
+
export type { Volo_Abp_Http_RemoteServiceErrorResponse } from './models/Volo_Abp_Http_RemoteServiceErrorResponse';
|
|
107
|
+
export type { Volo_Abp_Http_RemoteServiceValidationErrorInfo } from './models/Volo_Abp_Http_RemoteServiceValidationErrorInfo';
|
|
108
|
+
export { Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour } from './models/Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour';
|
|
109
|
+
export type { Volo_Abp_Identity_IdentitySecurityLogDto } from './models/Volo_Abp_Identity_IdentitySecurityLogDto';
|
|
110
|
+
export type { Volo_Abp_Identity_IdentityUserDto } from './models/Volo_Abp_Identity_IdentityUserDto';
|
|
111
|
+
export type { Volo_Abp_Localization_LanguageInfo } from './models/Volo_Abp_Localization_LanguageInfo';
|
|
112
|
+
export type { Volo_Abp_NameValue } from './models/Volo_Abp_NameValue';
|
|
111
113
|
|
|
112
|
-
export { AbpApiDefinitionService } from
|
|
113
|
-
export { AbpApplicationConfigurationService } from
|
|
114
|
-
export { AbpApplicationLocalizationService } from
|
|
115
|
-
export { AbpTenantService } from
|
|
116
|
-
export { AccountService } from
|
|
117
|
-
export { AccountExternalProviderService } from
|
|
118
|
-
export { AccountSettingsService } from
|
|
119
|
-
export { DynamicClaimsService } from
|
|
120
|
-
export { LoginService } from
|
|
121
|
-
export { ProfileService } from
|
|
122
|
-
export { UserService } from
|
|
114
|
+
export { AbpApiDefinitionService } from './services/AbpApiDefinitionService';
|
|
115
|
+
export { AbpApplicationConfigurationService } from './services/AbpApplicationConfigurationService';
|
|
116
|
+
export { AbpApplicationLocalizationService } from './services/AbpApplicationLocalizationService';
|
|
117
|
+
export { AbpTenantService } from './services/AbpTenantService';
|
|
118
|
+
export { AccountService } from './services/AccountService';
|
|
119
|
+
export { AccountExternalProviderService } from './services/AccountExternalProviderService';
|
|
120
|
+
export { AccountSettingsService } from './services/AccountSettingsService';
|
|
121
|
+
export { DynamicClaimsService } from './services/DynamicClaimsService';
|
|
122
|
+
export { LoginService } from './services/LoginService';
|
|
123
|
+
export { ProfileService } from './services/ProfileService';
|
|
124
|
+
export { UserService } from './services/UserService';
|
|
@@ -19,7 +19,7 @@ import type { Volo_Abp_Account_VerifyAuthenticatorCodeInput } from '../models/Vo
|
|
|
19
19
|
import type { Volo_Abp_Account_VerifyEmailConfirmationTokenInput } from '../models/Volo_Abp_Account_VerifyEmailConfirmationTokenInput';
|
|
20
20
|
import type { Volo_Abp_Account_VerifyPasswordResetTokenInput } from '../models/Volo_Abp_Account_VerifyPasswordResetTokenInput';
|
|
21
21
|
import type { Volo_Abp_Application_Dtos_PagedResultDto_1 } from '../models/Volo_Abp_Application_Dtos_PagedResultDto_1';
|
|
22
|
-
import type {
|
|
22
|
+
import type { Volo_Abp_Identity_IdentitySecurityLogDto_Volo_Abp_Identity_Pro_Application_Contracts_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_ } from '../models/Volo_Abp_Identity_IdentitySecurityLogDto_Volo_Abp_Identity_Pro_Application_Contracts_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_';
|
|
23
23
|
import type { Volo_Abp_Identity_IdentityUserDto } from '../models/Volo_Abp_Identity_IdentityUserDto';
|
|
24
24
|
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
25
25
|
import type { BaseHttpRequest } from '../core/BaseHttpRequest';
|
|
@@ -373,7 +373,7 @@ export class AccountService {
|
|
|
373
373
|
* @param skipCount
|
|
374
374
|
* @param maxResultCount
|
|
375
375
|
* @param extraProperties
|
|
376
|
-
* @returns Volo_Abp_Application_Dtos_PagedResultDto_1<
|
|
376
|
+
* @returns Volo_Abp_Application_Dtos_PagedResultDto_1<Volo_Abp_Identity_IdentitySecurityLogDto_Volo_Abp_Identity_Pro_Application_Contracts_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_> Success
|
|
377
377
|
* @throws ApiError
|
|
378
378
|
*/
|
|
379
379
|
public getApiAccountSecurityLogs(
|
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
import type { Volo_Abp_Account_DelegateNewUserInput } from '../models/Volo_Abp_Account_DelegateNewUserInput';
|
|
6
6
|
import type { Volo_Abp_Account_IsLinkedInput } from '../models/Volo_Abp_Account_IsLinkedInput';
|
|
7
|
-
import type {
|
|
7
|
+
import type { Volo_Abp_Account_LinkUserDto_Volo_Abp_Account_Pro_Public_Application_Contracts_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_ } from '../models/Volo_Abp_Account_LinkUserDto_Volo_Abp_Account_Pro_Public_Application_Contracts_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_';
|
|
8
8
|
import type { Volo_Abp_Account_LinkUserInput } from '../models/Volo_Abp_Account_LinkUserInput';
|
|
9
9
|
import type { Volo_Abp_Account_UnLinkUserInput } from '../models/Volo_Abp_Account_UnLinkUserInput';
|
|
10
|
-
import type {
|
|
11
|
-
import type {
|
|
10
|
+
import type { Volo_Abp_Account_UserDelegationDto_Volo_Abp_Account_Pro_Public_Application_Contracts_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_ } from '../models/Volo_Abp_Account_UserDelegationDto_Volo_Abp_Account_Pro_Public_Application_Contracts_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_';
|
|
11
|
+
import type { Volo_Abp_Account_UserLookupDto_Volo_Abp_Account_Pro_Public_Application_Contracts_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_ } from '../models/Volo_Abp_Account_UserLookupDto_Volo_Abp_Account_Pro_Public_Application_Contracts_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_';
|
|
12
12
|
import type { Volo_Abp_Account_VerifyLinkLoginTokenInput } from '../models/Volo_Abp_Account_VerifyLinkLoginTokenInput';
|
|
13
13
|
import type { Volo_Abp_Account_VerifyLinkTokenInput } from '../models/Volo_Abp_Account_VerifyLinkTokenInput';
|
|
14
14
|
import type { Volo_Abp_Application_Dtos_ListResultDto_1 } from '../models/Volo_Abp_Application_Dtos_ListResultDto_1';
|
|
@@ -168,7 +168,7 @@ export class UserService {
|
|
|
168
168
|
});
|
|
169
169
|
}
|
|
170
170
|
/**
|
|
171
|
-
* @returns Volo_Abp_Application_Dtos_ListResultDto_1<
|
|
171
|
+
* @returns Volo_Abp_Application_Dtos_ListResultDto_1<Volo_Abp_Account_LinkUserDto_Volo_Abp_Account_Pro_Public_Application_Contracts_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_> Success
|
|
172
172
|
* @throws ApiError
|
|
173
173
|
*/
|
|
174
174
|
public getApiAccountLinkUser(): CancelablePromise<Volo_Abp_Application_Dtos_ListResultDto_1> {
|
|
@@ -186,7 +186,7 @@ export class UserService {
|
|
|
186
186
|
});
|
|
187
187
|
}
|
|
188
188
|
/**
|
|
189
|
-
* @returns Volo_Abp_Application_Dtos_ListResultDto_1<
|
|
189
|
+
* @returns Volo_Abp_Application_Dtos_ListResultDto_1<Volo_Abp_Account_UserDelegationDto_Volo_Abp_Account_Pro_Public_Application_Contracts_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_> Success
|
|
190
190
|
* @throws ApiError
|
|
191
191
|
*/
|
|
192
192
|
public getApiAccountUserDelegationDelegatedUsers(): CancelablePromise<Volo_Abp_Application_Dtos_ListResultDto_1> {
|
|
@@ -204,7 +204,7 @@ export class UserService {
|
|
|
204
204
|
});
|
|
205
205
|
}
|
|
206
206
|
/**
|
|
207
|
-
* @returns Volo_Abp_Application_Dtos_ListResultDto_1<
|
|
207
|
+
* @returns Volo_Abp_Application_Dtos_ListResultDto_1<Volo_Abp_Account_UserDelegationDto_Volo_Abp_Account_Pro_Public_Application_Contracts_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_> Success
|
|
208
208
|
* @throws ApiError
|
|
209
209
|
*/
|
|
210
210
|
public getApiAccountUserDelegationMyDelegatedUsers(): CancelablePromise<Volo_Abp_Application_Dtos_ListResultDto_1> {
|
|
@@ -222,7 +222,7 @@ export class UserService {
|
|
|
222
222
|
});
|
|
223
223
|
}
|
|
224
224
|
/**
|
|
225
|
-
* @returns Volo_Abp_Application_Dtos_ListResultDto_1<
|
|
225
|
+
* @returns Volo_Abp_Application_Dtos_ListResultDto_1<Volo_Abp_Account_UserDelegationDto_Volo_Abp_Account_Pro_Public_Application_Contracts_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_> Success
|
|
226
226
|
* @throws ApiError
|
|
227
227
|
*/
|
|
228
228
|
public getApiAccountUserDelegationActiveDelegations(): CancelablePromise<Volo_Abp_Application_Dtos_ListResultDto_1> {
|
|
@@ -241,7 +241,7 @@ export class UserService {
|
|
|
241
241
|
}
|
|
242
242
|
/**
|
|
243
243
|
* @param userName
|
|
244
|
-
* @returns Volo_Abp_Application_Dtos_ListResultDto_1<
|
|
244
|
+
* @returns Volo_Abp_Application_Dtos_ListResultDto_1<Volo_Abp_Account_UserLookupDto_Volo_Abp_Account_Pro_Public_Application_Contracts_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_> Success
|
|
245
245
|
* @throws ApiError
|
|
246
246
|
*/
|
|
247
247
|
public getApiAccountUserDelegationUserLookup(
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { BaseHttpRequest } from './core/BaseHttpRequest';
|
|
6
|
+
import type { OpenAPIConfig } from './core/OpenAPI';
|
|
7
|
+
import { FetchHttpRequest } from './core/FetchHttpRequest';
|
|
8
|
+
import { AbpApiDefinitionService } from './services/AbpApiDefinitionService';
|
|
9
|
+
import { AbpApplicationConfigurationService } from './services/AbpApplicationConfigurationService';
|
|
10
|
+
import { AbpApplicationLocalizationService } from './services/AbpApplicationLocalizationService';
|
|
11
|
+
import { AbpTenantService } from './services/AbpTenantService';
|
|
12
|
+
import { AuditLogsService } from './services/AuditLogsService';
|
|
13
|
+
import { EmailSettingsService } from './services/EmailSettingsService';
|
|
14
|
+
import { FeaturesService } from './services/FeaturesService';
|
|
15
|
+
import { GdprRequestService } from './services/GdprRequestService';
|
|
16
|
+
import { LanguagesService } from './services/LanguagesService';
|
|
17
|
+
import { LanguageTextsService } from './services/LanguageTextsService';
|
|
18
|
+
import { PermissionsService } from './services/PermissionsService';
|
|
19
|
+
import { TextTemplateContentsService } from './services/TextTemplateContentsService';
|
|
20
|
+
import { TextTemplateDefinitionsService } from './services/TextTemplateDefinitionsService';
|
|
21
|
+
import { TimeZoneSettingsService } from './services/TimeZoneSettingsService';
|
|
22
|
+
type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
|
|
23
|
+
export class AdministrationServiceClient {
|
|
24
|
+
public readonly abpApiDefinition: AbpApiDefinitionService;
|
|
25
|
+
public readonly abpApplicationConfiguration: AbpApplicationConfigurationService;
|
|
26
|
+
public readonly abpApplicationLocalization: AbpApplicationLocalizationService;
|
|
27
|
+
public readonly abpTenant: AbpTenantService;
|
|
28
|
+
public readonly auditLogs: AuditLogsService;
|
|
29
|
+
public readonly emailSettings: EmailSettingsService;
|
|
30
|
+
public readonly features: FeaturesService;
|
|
31
|
+
public readonly gdprRequest: GdprRequestService;
|
|
32
|
+
public readonly languages: LanguagesService;
|
|
33
|
+
public readonly languageTexts: LanguageTextsService;
|
|
34
|
+
public readonly permissions: PermissionsService;
|
|
35
|
+
public readonly textTemplateContents: TextTemplateContentsService;
|
|
36
|
+
public readonly textTemplateDefinitions: TextTemplateDefinitionsService;
|
|
37
|
+
public readonly timeZoneSettings: TimeZoneSettingsService;
|
|
38
|
+
public readonly request: BaseHttpRequest;
|
|
39
|
+
constructor(config?: Partial<OpenAPIConfig>, HttpRequest: HttpRequestConstructor = FetchHttpRequest) {
|
|
40
|
+
this.request = new HttpRequest({
|
|
41
|
+
BASE: config?.BASE ?? '',
|
|
42
|
+
VERSION: config?.VERSION ?? '1',
|
|
43
|
+
WITH_CREDENTIALS: config?.WITH_CREDENTIALS ?? false,
|
|
44
|
+
CREDENTIALS: config?.CREDENTIALS ?? 'include',
|
|
45
|
+
TOKEN: config?.TOKEN,
|
|
46
|
+
USERNAME: config?.USERNAME,
|
|
47
|
+
PASSWORD: config?.PASSWORD,
|
|
48
|
+
HEADERS: config?.HEADERS,
|
|
49
|
+
ENCODE_PATH: config?.ENCODE_PATH,
|
|
50
|
+
});
|
|
51
|
+
this.abpApiDefinition = new AbpApiDefinitionService(this.request);
|
|
52
|
+
this.abpApplicationConfiguration = new AbpApplicationConfigurationService(this.request);
|
|
53
|
+
this.abpApplicationLocalization = new AbpApplicationLocalizationService(this.request);
|
|
54
|
+
this.abpTenant = new AbpTenantService(this.request);
|
|
55
|
+
this.auditLogs = new AuditLogsService(this.request);
|
|
56
|
+
this.emailSettings = new EmailSettingsService(this.request);
|
|
57
|
+
this.features = new FeaturesService(this.request);
|
|
58
|
+
this.gdprRequest = new GdprRequestService(this.request);
|
|
59
|
+
this.languages = new LanguagesService(this.request);
|
|
60
|
+
this.languageTexts = new LanguageTextsService(this.request);
|
|
61
|
+
this.permissions = new PermissionsService(this.request);
|
|
62
|
+
this.textTemplateContents = new TextTemplateContentsService(this.request);
|
|
63
|
+
this.textTemplateDefinitions = new TextTemplateDefinitionsService(this.request);
|
|
64
|
+
this.timeZoneSettings = new TimeZoneSettingsService(this.request);
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { ApiRequestOptions } from './ApiRequestOptions';
|
|
6
|
+
import type { ApiResult } from './ApiResult';
|
|
7
|
+
|
|
8
|
+
export class ApiError extends Error {
|
|
9
|
+
public readonly url: string;
|
|
10
|
+
public readonly status: number;
|
|
11
|
+
public readonly statusText: string;
|
|
12
|
+
public readonly body: any;
|
|
13
|
+
public readonly request: ApiRequestOptions;
|
|
14
|
+
|
|
15
|
+
constructor(request: ApiRequestOptions, response: ApiResult, message: string) {
|
|
16
|
+
super(message);
|
|
17
|
+
|
|
18
|
+
this.name = 'ApiError';
|
|
19
|
+
this.url = response.url;
|
|
20
|
+
this.status = response.status;
|
|
21
|
+
this.statusText = response.statusText;
|
|
22
|
+
this.body = response.body;
|
|
23
|
+
this.request = request;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type ApiRequestOptions = {
|
|
6
|
+
readonly method: 'GET' | 'PUT' | 'POST' | 'DELETE' | 'OPTIONS' | 'HEAD' | 'PATCH';
|
|
7
|
+
readonly url: string;
|
|
8
|
+
readonly path?: Record<string, any>;
|
|
9
|
+
readonly cookies?: Record<string, any>;
|
|
10
|
+
readonly headers?: Record<string, any>;
|
|
11
|
+
readonly query?: Record<string, any>;
|
|
12
|
+
readonly formData?: Record<string, any>;
|
|
13
|
+
readonly body?: any;
|
|
14
|
+
readonly mediaType?: string;
|
|
15
|
+
readonly responseHeader?: string;
|
|
16
|
+
readonly errors?: Record<number, string>;
|
|
17
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type ApiResult = {
|
|
6
|
+
readonly url: string;
|
|
7
|
+
readonly ok: boolean;
|
|
8
|
+
readonly status: number;
|
|
9
|
+
readonly statusText: string;
|
|
10
|
+
readonly body: any;
|
|
11
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { ApiRequestOptions } from './ApiRequestOptions';
|
|
6
|
+
import type { CancelablePromise } from './CancelablePromise';
|
|
7
|
+
import type { OpenAPIConfig } from './OpenAPI';
|
|
8
|
+
|
|
9
|
+
export abstract class BaseHttpRequest {
|
|
10
|
+
|
|
11
|
+
constructor(public readonly config: OpenAPIConfig) {}
|
|
12
|
+
|
|
13
|
+
public abstract request<T>(options: ApiRequestOptions): CancelablePromise<T>;
|
|
14
|
+
}
|