@ayasofyazilim/saas 0.0.4 → 0.0.6
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 +115 -117
- package/AdministrationService/index.ts +111 -116
- package/IdentityService/IdentityServiceClient.ts +70 -0
- package/IdentityService/core/ApiError.ts +25 -0
- package/IdentityService/core/ApiRequestOptions.ts +17 -0
- package/IdentityService/core/ApiResult.ts +11 -0
- package/IdentityService/core/BaseHttpRequest.ts +14 -0
- package/IdentityService/core/CancelablePromise.ts +131 -0
- package/IdentityService/core/FetchHttpRequest.ts +26 -0
- package/IdentityService/core/OpenAPI.ts +32 -0
- package/IdentityService/core/request.ts +322 -0
- package/IdentityService/index.ts +133 -0
- package/IdentityService/models/Volo_Abp_Account_AccountExternalProviderSettingsDto.ts +9 -0
- package/IdentityService/models/Volo_Abp_Account_AccountRecaptchaSettingsDto.ts +14 -0
- package/IdentityService/models/Volo_Abp_Account_AccountSettingsDto.ts +9 -0
- package/IdentityService/models/Volo_Abp_Account_AccountTwoFactorSettingsDto.ts +11 -0
- package/IdentityService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettings.ts +12 -0
- package/{ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectSections_ProjectSectionDetailDto.ts → IdentityService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty.ts} +1 -1
- package/IdentityService/models/Volo_Abp_Account_UpdateExternalProviderDto.ts +12 -0
- package/IdentityService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -0
- package/IdentityService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -0
- package/IdentityService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -0
- package/IdentityService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -0
- package/IdentityService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -0
- package/IdentityService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -0
- package/IdentityService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -0
- package/IdentityService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -0
- package/IdentityService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -0
- package/IdentityService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -0
- package/IdentityService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -0
- package/IdentityService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -0
- package/IdentityService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -0
- package/IdentityService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -0
- package/IdentityService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -0
- package/IdentityService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -0
- package/IdentityService/models/Volo_Abp_Identity_ClaimTypeDto.ts +19 -0
- package/IdentityService/models/Volo_Abp_Identity_CreateClaimTypeDto.ts +15 -0
- package/IdentityService/models/Volo_Abp_Identity_DownloadTokenResultDto.ts +8 -0
- package/IdentityService/models/Volo_Abp_Identity_ExternalLoginProviderDto.ts +9 -0
- package/IdentityService/models/Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour.ts +9 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityClaimValueType.ts +10 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityLdapSettingsDto.ts +15 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityLockoutSettingsDto.ts +10 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityOAuthSettingsDto.ts +15 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityPasswordSettingsDto.ts +15 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityRoleClaimDto.ts +10 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityRoleCreateDto.ts +11 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityRoleDto.ts +15 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityRoleLookupDto.ts +9 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityRoleUpdateDto.ts +12 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentitySecurityLogDto.ts +21 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentitySettingsDto.ts +15 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentitySignInSettingsDto.ts +10 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityUserClaimDto.ts +10 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityUserCreateDto.ts +20 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityUserDto.ts +35 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityUserSettingsDto.ts +9 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdateDto.ts +19 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdatePasswordInput.ts +8 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdateRolesDto.ts +8 -0
- package/IdentityService/models/Volo_Abp_Identity_ImportExternalUserInput.ts +10 -0
- package/IdentityService/models/Volo_Abp_Identity_ImportUsersFromFileOutput.ts +12 -0
- package/IdentityService/models/Volo_Abp_Identity_ImportUsersFromFileType.ts +8 -0
- package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitCreateDto.ts +10 -0
- package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitDto.ts +21 -0
- package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitLookupDto.ts +9 -0
- package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitMoveInput.ts +8 -0
- package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitRoleDto.ts +11 -0
- package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitRoleInput.ts +8 -0
- package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitUpdateDto.ts +10 -0
- package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitUserInput.ts +8 -0
- package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitWithDetailsDto.ts +23 -0
- package/IdentityService/models/Volo_Abp_Identity_UpdateClaimTypeDto.ts +16 -0
- package/IdentityService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -0
- package/IdentityService/models/Volo_Abp_NameValue.ts +9 -0
- package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationDto.ts +29 -0
- package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationTokenLifetimeDto.ts +13 -0
- package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_CreateApplicationInput.ts +28 -0
- package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_UpdateApplicationInput.ts +28 -0
- package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_CreateScopeInput.ts +12 -0
- package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_ScopeDto.ts +14 -0
- package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_UpdateScopeInput.ts +12 -0
- package/IdentityService/models/Volo_Abp_Users_UserData.ts +18 -0
- package/IdentityService/services/AbpApiDefinitionService.ts +34 -0
- package/IdentityService/services/AbpApplicationConfigurationService.ts +34 -0
- package/IdentityService/services/AbpApplicationLocalizationService.ts +37 -0
- package/IdentityService/services/AccountSettingsService.ts +178 -0
- package/IdentityService/services/ApplicationsService.ts +199 -0
- package/IdentityService/services/ClaimTypeService.ts +149 -0
- package/IdentityService/services/ExternalLoginService.ts +27 -0
- package/IdentityService/services/OrganizationUnitService.ts +539 -0
- package/IdentityService/services/RoleService.ts +269 -0
- package/IdentityService/services/ScopesService.ts +164 -0
- package/IdentityService/services/SecurityLogService.ts +174 -0
- package/IdentityService/services/SettingsService.ts +135 -0
- package/IdentityService/services/UserIntegrationService.ts +144 -0
- package/IdentityService/services/UserLookupService.ts +120 -0
- package/IdentityService/services/UserService.ts +937 -0
- package/ProjectService/ProjectServiceClient.ts +9 -9
- package/ProjectService/index.ts +14 -14
- package/ProjectService/models/{UpWithCrowdDemo_ProjectService_ProjectSectionRelations_CreateProjectSectionRelationDto.ts → AbpForDeploy_ProjectService_ProjectSectionRelations_CreateProjectSectionRelationDto.ts} +2 -1
- package/ProjectService/models/{UpWithCrowdDemo_ProjectService_ProjectSectionRelations_ProjectSectionRelationDto.ts → AbpForDeploy_ProjectService_ProjectSectionRelations_ProjectSectionRelationDto.ts} +1 -1
- package/ProjectService/models/{UpWithCrowdDemo_ProjectService_ProjectSectionRelations_UpdateProjectSectionRelationDto.ts → AbpForDeploy_ProjectService_ProjectSectionRelations_UpdateProjectSectionRelationDto.ts} +2 -1
- package/ProjectService/models/{UpWithCrowdDemo_ProjectService_ProjectSections_CreateProjectSectionDto.ts → AbpForDeploy_ProjectService_ProjectSections_CreateProjectSectionDto.ts} +2 -1
- package/ProjectService/models/AbpForDeploy_ProjectService_ProjectSections_ProjectSectionDetailDto.ts +9 -0
- package/ProjectService/models/{UpWithCrowdDemo_ProjectService_ProjectSections_ProjectSectionDto.ts → AbpForDeploy_ProjectService_ProjectSections_ProjectSectionDto.ts} +1 -1
- package/ProjectService/models/{UpWithCrowdDemo_ProjectService_ProjectSections_UpdateProjectSectionDto.ts → AbpForDeploy_ProjectService_ProjectSections_UpdateProjectSectionDto.ts} +1 -1
- package/ProjectService/models/{UpWithCrowdDemo_ProjectService_ProjectsDto_SaveProjectDto.ts → AbpForDeploy_ProjectService_ProjectsDto_CreateProjectDto.ts} +3 -1
- package/ProjectService/models/{UpWithCrowdDemo_ProjectService_ProjectsDto_UpdateProjectDto.ts → AbpForDeploy_ProjectService_ProjectsDto_UpdateProjectDto.ts} +3 -1
- package/ProjectService/models/{UpWithCrowdDemo_ProjectService_Projects_ProjectDto.ts → AbpForDeploy_ProjectService_Projects_ProjectDto.ts} +4 -3
- package/ProjectService/models/{UpWithCrowdDemo_ProjectService_Samples_SampleDto.ts → AbpForDeploy_ProjectService_Samples_SampleDto.ts} +1 -1
- package/ProjectService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +2 -2
- package/ProjectService/services/{ProjectSectionRelationServiceService.ts → ProjectSectionRelationService.ts} +14 -14
- package/ProjectService/services/{ProjectSectionServiceService.ts → ProjectSectionService.ts} +14 -14
- package/ProjectService/services/ProjectService.ts +29 -23
- package/ProjectService/services/{SampleServiceService.ts → ProjectServiceService.ts} +8 -8
- package/package.json +6 -4
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_Identity_IdentityLdapSettingsDto } from '../models/Volo_Abp_Identity_IdentityLdapSettingsDto';
|
|
6
|
+
import type { Volo_Abp_Identity_IdentityOAuthSettingsDto } from '../models/Volo_Abp_Identity_IdentityOAuthSettingsDto';
|
|
7
|
+
import type { Volo_Abp_Identity_IdentitySettingsDto } from '../models/Volo_Abp_Identity_IdentitySettingsDto';
|
|
8
|
+
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
9
|
+
import type { BaseHttpRequest } from '../core/BaseHttpRequest';
|
|
10
|
+
export class SettingsService {
|
|
11
|
+
constructor(public readonly httpRequest: BaseHttpRequest) {}
|
|
12
|
+
/**
|
|
13
|
+
* @returns Volo_Abp_Identity_IdentitySettingsDto Success
|
|
14
|
+
* @throws ApiError
|
|
15
|
+
*/
|
|
16
|
+
public getApiIdentitySettings(): CancelablePromise<Volo_Abp_Identity_IdentitySettingsDto> {
|
|
17
|
+
return this.httpRequest.request({
|
|
18
|
+
method: 'GET',
|
|
19
|
+
url: '/api/identity/settings',
|
|
20
|
+
errors: {
|
|
21
|
+
400: `Bad Request`,
|
|
22
|
+
401: `Unauthorized`,
|
|
23
|
+
403: `Forbidden`,
|
|
24
|
+
404: `Not Found`,
|
|
25
|
+
500: `Server Error`,
|
|
26
|
+
501: `Server Error`,
|
|
27
|
+
},
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* @param requestBody
|
|
32
|
+
* @returns any Success
|
|
33
|
+
* @throws ApiError
|
|
34
|
+
*/
|
|
35
|
+
public putApiIdentitySettings(
|
|
36
|
+
requestBody?: Volo_Abp_Identity_IdentitySettingsDto,
|
|
37
|
+
): CancelablePromise<any> {
|
|
38
|
+
return this.httpRequest.request({
|
|
39
|
+
method: 'PUT',
|
|
40
|
+
url: '/api/identity/settings',
|
|
41
|
+
body: requestBody,
|
|
42
|
+
mediaType: 'application/json',
|
|
43
|
+
errors: {
|
|
44
|
+
400: `Bad Request`,
|
|
45
|
+
401: `Unauthorized`,
|
|
46
|
+
403: `Forbidden`,
|
|
47
|
+
404: `Not Found`,
|
|
48
|
+
500: `Server Error`,
|
|
49
|
+
501: `Server Error`,
|
|
50
|
+
},
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* @returns Volo_Abp_Identity_IdentityLdapSettingsDto Success
|
|
55
|
+
* @throws ApiError
|
|
56
|
+
*/
|
|
57
|
+
public getApiIdentitySettingsLdap(): CancelablePromise<Volo_Abp_Identity_IdentityLdapSettingsDto> {
|
|
58
|
+
return this.httpRequest.request({
|
|
59
|
+
method: 'GET',
|
|
60
|
+
url: '/api/identity/settings/ldap',
|
|
61
|
+
errors: {
|
|
62
|
+
400: `Bad Request`,
|
|
63
|
+
401: `Unauthorized`,
|
|
64
|
+
403: `Forbidden`,
|
|
65
|
+
404: `Not Found`,
|
|
66
|
+
500: `Server Error`,
|
|
67
|
+
501: `Server Error`,
|
|
68
|
+
},
|
|
69
|
+
});
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* @param requestBody
|
|
73
|
+
* @returns any Success
|
|
74
|
+
* @throws ApiError
|
|
75
|
+
*/
|
|
76
|
+
public putApiIdentitySettingsLdap(
|
|
77
|
+
requestBody?: Volo_Abp_Identity_IdentityLdapSettingsDto,
|
|
78
|
+
): CancelablePromise<any> {
|
|
79
|
+
return this.httpRequest.request({
|
|
80
|
+
method: 'PUT',
|
|
81
|
+
url: '/api/identity/settings/ldap',
|
|
82
|
+
body: requestBody,
|
|
83
|
+
mediaType: 'application/json',
|
|
84
|
+
errors: {
|
|
85
|
+
400: `Bad Request`,
|
|
86
|
+
401: `Unauthorized`,
|
|
87
|
+
403: `Forbidden`,
|
|
88
|
+
404: `Not Found`,
|
|
89
|
+
500: `Server Error`,
|
|
90
|
+
501: `Server Error`,
|
|
91
|
+
},
|
|
92
|
+
});
|
|
93
|
+
}
|
|
94
|
+
/**
|
|
95
|
+
* @returns Volo_Abp_Identity_IdentityOAuthSettingsDto Success
|
|
96
|
+
* @throws ApiError
|
|
97
|
+
*/
|
|
98
|
+
public getApiIdentitySettingsOauth(): CancelablePromise<Volo_Abp_Identity_IdentityOAuthSettingsDto> {
|
|
99
|
+
return this.httpRequest.request({
|
|
100
|
+
method: 'GET',
|
|
101
|
+
url: '/api/identity/settings/oauth',
|
|
102
|
+
errors: {
|
|
103
|
+
400: `Bad Request`,
|
|
104
|
+
401: `Unauthorized`,
|
|
105
|
+
403: `Forbidden`,
|
|
106
|
+
404: `Not Found`,
|
|
107
|
+
500: `Server Error`,
|
|
108
|
+
501: `Server Error`,
|
|
109
|
+
},
|
|
110
|
+
});
|
|
111
|
+
}
|
|
112
|
+
/**
|
|
113
|
+
* @param requestBody
|
|
114
|
+
* @returns any Success
|
|
115
|
+
* @throws ApiError
|
|
116
|
+
*/
|
|
117
|
+
public putApiIdentitySettingsOauth(
|
|
118
|
+
requestBody?: Volo_Abp_Identity_IdentityOAuthSettingsDto,
|
|
119
|
+
): CancelablePromise<any> {
|
|
120
|
+
return this.httpRequest.request({
|
|
121
|
+
method: 'PUT',
|
|
122
|
+
url: '/api/identity/settings/oauth',
|
|
123
|
+
body: requestBody,
|
|
124
|
+
mediaType: 'application/json',
|
|
125
|
+
errors: {
|
|
126
|
+
400: `Bad Request`,
|
|
127
|
+
401: `Unauthorized`,
|
|
128
|
+
403: `Forbidden`,
|
|
129
|
+
404: `Not Found`,
|
|
130
|
+
500: `Server Error`,
|
|
131
|
+
501: `Server Error`,
|
|
132
|
+
},
|
|
133
|
+
});
|
|
134
|
+
}
|
|
135
|
+
}
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_Application_Dtos_ListResultDto_1 } from '../models/Volo_Abp_Application_Dtos_ListResultDto_1';
|
|
6
|
+
import type { Volo_Abp_Users_UserData } from '../models/Volo_Abp_Users_UserData';
|
|
7
|
+
import type { Volo_Abp_Users_UserData_Volo_Abp_Users_Abstractions_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_ } from '../models/Volo_Abp_Users_UserData_Volo_Abp_Users_Abstractions_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_';
|
|
8
|
+
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
9
|
+
import type { BaseHttpRequest } from '../core/BaseHttpRequest';
|
|
10
|
+
export class UserIntegrationService {
|
|
11
|
+
constructor(public readonly httpRequest: BaseHttpRequest) {}
|
|
12
|
+
/**
|
|
13
|
+
* @param id
|
|
14
|
+
* @returns string Success
|
|
15
|
+
* @throws ApiError
|
|
16
|
+
*/
|
|
17
|
+
public getIntegrationApiIdentityUsersRoleNames(
|
|
18
|
+
id: string,
|
|
19
|
+
): CancelablePromise<Array<string>> {
|
|
20
|
+
return this.httpRequest.request({
|
|
21
|
+
method: 'GET',
|
|
22
|
+
url: '/integration-api/identity/users/{id}/role-names',
|
|
23
|
+
path: {
|
|
24
|
+
'id': id,
|
|
25
|
+
},
|
|
26
|
+
errors: {
|
|
27
|
+
400: `Bad Request`,
|
|
28
|
+
401: `Unauthorized`,
|
|
29
|
+
403: `Forbidden`,
|
|
30
|
+
404: `Not Found`,
|
|
31
|
+
500: `Server Error`,
|
|
32
|
+
501: `Server Error`,
|
|
33
|
+
},
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* @param id
|
|
38
|
+
* @returns Volo_Abp_Users_UserData Success
|
|
39
|
+
* @throws ApiError
|
|
40
|
+
*/
|
|
41
|
+
public getIntegrationApiIdentityUsers(
|
|
42
|
+
id: string,
|
|
43
|
+
): CancelablePromise<Volo_Abp_Users_UserData> {
|
|
44
|
+
return this.httpRequest.request({
|
|
45
|
+
method: 'GET',
|
|
46
|
+
url: '/integration-api/identity/users/{id}',
|
|
47
|
+
path: {
|
|
48
|
+
'id': id,
|
|
49
|
+
},
|
|
50
|
+
errors: {
|
|
51
|
+
400: `Bad Request`,
|
|
52
|
+
401: `Unauthorized`,
|
|
53
|
+
403: `Forbidden`,
|
|
54
|
+
404: `Not Found`,
|
|
55
|
+
500: `Server Error`,
|
|
56
|
+
501: `Server Error`,
|
|
57
|
+
},
|
|
58
|
+
});
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* @param userName
|
|
62
|
+
* @returns Volo_Abp_Users_UserData Success
|
|
63
|
+
* @throws ApiError
|
|
64
|
+
*/
|
|
65
|
+
public getIntegrationApiIdentityUsersByUsername(
|
|
66
|
+
userName: string,
|
|
67
|
+
): CancelablePromise<Volo_Abp_Users_UserData> {
|
|
68
|
+
return this.httpRequest.request({
|
|
69
|
+
method: 'GET',
|
|
70
|
+
url: '/integration-api/identity/users/by-username/{userName}',
|
|
71
|
+
path: {
|
|
72
|
+
'userName': userName,
|
|
73
|
+
},
|
|
74
|
+
errors: {
|
|
75
|
+
400: `Bad Request`,
|
|
76
|
+
401: `Unauthorized`,
|
|
77
|
+
403: `Forbidden`,
|
|
78
|
+
404: `Not Found`,
|
|
79
|
+
500: `Server Error`,
|
|
80
|
+
501: `Server Error`,
|
|
81
|
+
},
|
|
82
|
+
});
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* @param sorting
|
|
86
|
+
* @param filter
|
|
87
|
+
* @param skipCount
|
|
88
|
+
* @param maxResultCount
|
|
89
|
+
* @param extraProperties
|
|
90
|
+
* @returns Volo_Abp_Application_Dtos_ListResultDto_1<Volo_Abp_Users_UserData_Volo_Abp_Users_Abstractions_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_> Success
|
|
91
|
+
* @throws ApiError
|
|
92
|
+
*/
|
|
93
|
+
public getIntegrationApiIdentityUsersSearch(
|
|
94
|
+
sorting?: string,
|
|
95
|
+
filter?: string,
|
|
96
|
+
skipCount?: number,
|
|
97
|
+
maxResultCount?: number,
|
|
98
|
+
extraProperties?: Record<string, any>,
|
|
99
|
+
): CancelablePromise<Volo_Abp_Application_Dtos_ListResultDto_1> {
|
|
100
|
+
return this.httpRequest.request({
|
|
101
|
+
method: 'GET',
|
|
102
|
+
url: '/integration-api/identity/users/search',
|
|
103
|
+
query: {
|
|
104
|
+
'Sorting': sorting,
|
|
105
|
+
'Filter': filter,
|
|
106
|
+
'SkipCount': skipCount,
|
|
107
|
+
'MaxResultCount': maxResultCount,
|
|
108
|
+
'ExtraProperties': extraProperties,
|
|
109
|
+
},
|
|
110
|
+
errors: {
|
|
111
|
+
400: `Bad Request`,
|
|
112
|
+
401: `Unauthorized`,
|
|
113
|
+
403: `Forbidden`,
|
|
114
|
+
404: `Not Found`,
|
|
115
|
+
500: `Server Error`,
|
|
116
|
+
501: `Server Error`,
|
|
117
|
+
},
|
|
118
|
+
});
|
|
119
|
+
}
|
|
120
|
+
/**
|
|
121
|
+
* @param filter
|
|
122
|
+
* @returns number Success
|
|
123
|
+
* @throws ApiError
|
|
124
|
+
*/
|
|
125
|
+
public getIntegrationApiIdentityUsersCount(
|
|
126
|
+
filter?: string,
|
|
127
|
+
): CancelablePromise<number> {
|
|
128
|
+
return this.httpRequest.request({
|
|
129
|
+
method: 'GET',
|
|
130
|
+
url: '/integration-api/identity/users/count',
|
|
131
|
+
query: {
|
|
132
|
+
'Filter': filter,
|
|
133
|
+
},
|
|
134
|
+
errors: {
|
|
135
|
+
400: `Bad Request`,
|
|
136
|
+
401: `Unauthorized`,
|
|
137
|
+
403: `Forbidden`,
|
|
138
|
+
404: `Not Found`,
|
|
139
|
+
500: `Server Error`,
|
|
140
|
+
501: `Server Error`,
|
|
141
|
+
},
|
|
142
|
+
});
|
|
143
|
+
}
|
|
144
|
+
}
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_Application_Dtos_ListResultDto_1 } from '../models/Volo_Abp_Application_Dtos_ListResultDto_1';
|
|
6
|
+
import type { Volo_Abp_Users_UserData } from '../models/Volo_Abp_Users_UserData';
|
|
7
|
+
import type { Volo_Abp_Users_UserData_Volo_Abp_Users_Abstractions_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_ } from '../models/Volo_Abp_Users_UserData_Volo_Abp_Users_Abstractions_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_';
|
|
8
|
+
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
9
|
+
import type { BaseHttpRequest } from '../core/BaseHttpRequest';
|
|
10
|
+
export class UserLookupService {
|
|
11
|
+
constructor(public readonly httpRequest: BaseHttpRequest) {}
|
|
12
|
+
/**
|
|
13
|
+
* @param id
|
|
14
|
+
* @returns Volo_Abp_Users_UserData Success
|
|
15
|
+
* @throws ApiError
|
|
16
|
+
*/
|
|
17
|
+
public getApiIdentityUsersLookup(
|
|
18
|
+
id: string,
|
|
19
|
+
): CancelablePromise<Volo_Abp_Users_UserData> {
|
|
20
|
+
return this.httpRequest.request({
|
|
21
|
+
method: 'GET',
|
|
22
|
+
url: '/api/identity/users/lookup/{id}',
|
|
23
|
+
path: {
|
|
24
|
+
'id': id,
|
|
25
|
+
},
|
|
26
|
+
errors: {
|
|
27
|
+
400: `Bad Request`,
|
|
28
|
+
401: `Unauthorized`,
|
|
29
|
+
403: `Forbidden`,
|
|
30
|
+
404: `Not Found`,
|
|
31
|
+
500: `Server Error`,
|
|
32
|
+
501: `Server Error`,
|
|
33
|
+
},
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* @param userName
|
|
38
|
+
* @returns Volo_Abp_Users_UserData Success
|
|
39
|
+
* @throws ApiError
|
|
40
|
+
*/
|
|
41
|
+
public getApiIdentityUsersLookupByUsername(
|
|
42
|
+
userName: string,
|
|
43
|
+
): CancelablePromise<Volo_Abp_Users_UserData> {
|
|
44
|
+
return this.httpRequest.request({
|
|
45
|
+
method: 'GET',
|
|
46
|
+
url: '/api/identity/users/lookup/by-username/{userName}',
|
|
47
|
+
path: {
|
|
48
|
+
'userName': userName,
|
|
49
|
+
},
|
|
50
|
+
errors: {
|
|
51
|
+
400: `Bad Request`,
|
|
52
|
+
401: `Unauthorized`,
|
|
53
|
+
403: `Forbidden`,
|
|
54
|
+
404: `Not Found`,
|
|
55
|
+
500: `Server Error`,
|
|
56
|
+
501: `Server Error`,
|
|
57
|
+
},
|
|
58
|
+
});
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* @param sorting
|
|
62
|
+
* @param filter
|
|
63
|
+
* @param skipCount
|
|
64
|
+
* @param maxResultCount
|
|
65
|
+
* @param extraProperties
|
|
66
|
+
* @returns Volo_Abp_Application_Dtos_ListResultDto_1<Volo_Abp_Users_UserData_Volo_Abp_Users_Abstractions_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_> Success
|
|
67
|
+
* @throws ApiError
|
|
68
|
+
*/
|
|
69
|
+
public getApiIdentityUsersLookupSearch(
|
|
70
|
+
sorting?: string,
|
|
71
|
+
filter?: string,
|
|
72
|
+
skipCount?: number,
|
|
73
|
+
maxResultCount?: number,
|
|
74
|
+
extraProperties?: Record<string, any>,
|
|
75
|
+
): CancelablePromise<Volo_Abp_Application_Dtos_ListResultDto_1> {
|
|
76
|
+
return this.httpRequest.request({
|
|
77
|
+
method: 'GET',
|
|
78
|
+
url: '/api/identity/users/lookup/search',
|
|
79
|
+
query: {
|
|
80
|
+
'Sorting': sorting,
|
|
81
|
+
'Filter': filter,
|
|
82
|
+
'SkipCount': skipCount,
|
|
83
|
+
'MaxResultCount': maxResultCount,
|
|
84
|
+
'ExtraProperties': extraProperties,
|
|
85
|
+
},
|
|
86
|
+
errors: {
|
|
87
|
+
400: `Bad Request`,
|
|
88
|
+
401: `Unauthorized`,
|
|
89
|
+
403: `Forbidden`,
|
|
90
|
+
404: `Not Found`,
|
|
91
|
+
500: `Server Error`,
|
|
92
|
+
501: `Server Error`,
|
|
93
|
+
},
|
|
94
|
+
});
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* @param filter
|
|
98
|
+
* @returns number Success
|
|
99
|
+
* @throws ApiError
|
|
100
|
+
*/
|
|
101
|
+
public getApiIdentityUsersLookupCount(
|
|
102
|
+
filter?: string,
|
|
103
|
+
): CancelablePromise<number> {
|
|
104
|
+
return this.httpRequest.request({
|
|
105
|
+
method: 'GET',
|
|
106
|
+
url: '/api/identity/users/lookup/count',
|
|
107
|
+
query: {
|
|
108
|
+
'Filter': filter,
|
|
109
|
+
},
|
|
110
|
+
errors: {
|
|
111
|
+
400: `Bad Request`,
|
|
112
|
+
401: `Unauthorized`,
|
|
113
|
+
403: `Forbidden`,
|
|
114
|
+
404: `Not Found`,
|
|
115
|
+
500: `Server Error`,
|
|
116
|
+
501: `Server Error`,
|
|
117
|
+
},
|
|
118
|
+
});
|
|
119
|
+
}
|
|
120
|
+
}
|