@ayasofyazilim/saas 0.0.4 → 0.0.5
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/IdentityService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty.ts +9 -0
- 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/index.ts +75 -77
- package/package.json +5 -3
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_Identity_IdentityUserUpdateDto = {
|
|
6
|
+
readonly extraProperties?: Record<string, any> | null;
|
|
7
|
+
userName: string;
|
|
8
|
+
name?: string | null;
|
|
9
|
+
surname?: string | null;
|
|
10
|
+
email: string;
|
|
11
|
+
phoneNumber?: string | null;
|
|
12
|
+
isActive?: boolean;
|
|
13
|
+
shouldChangePasswordOnNextLogin?: boolean;
|
|
14
|
+
lockoutEnabled?: boolean;
|
|
15
|
+
roleNames?: Array<string> | null;
|
|
16
|
+
organizationUnitIds?: Array<string> | null;
|
|
17
|
+
concurrencyStamp?: string | null;
|
|
18
|
+
};
|
|
19
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_Identity_ImportExternalUserInput = {
|
|
6
|
+
provider: string;
|
|
7
|
+
userNameOrEmailAddress: string;
|
|
8
|
+
password?: string | null;
|
|
9
|
+
};
|
|
10
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_Identity_ImportUsersFromFileOutput = {
|
|
6
|
+
allCount?: number;
|
|
7
|
+
succeededCount?: number;
|
|
8
|
+
failedCount?: number;
|
|
9
|
+
invalidUsersDownloadToken?: string | null;
|
|
10
|
+
readonly isAllSucceeded?: boolean;
|
|
11
|
+
};
|
|
12
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_Identity_OrganizationUnitCreateDto = {
|
|
6
|
+
readonly extraProperties?: Record<string, any> | null;
|
|
7
|
+
displayName: string;
|
|
8
|
+
parentId?: string | null;
|
|
9
|
+
};
|
|
10
|
+
|
|
@@ -0,0 +1,21 @@
|
|
|
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_OrganizationUnitRoleDto } from './Volo_Abp_Identity_OrganizationUnitRoleDto';
|
|
6
|
+
export type Volo_Abp_Identity_OrganizationUnitDto = {
|
|
7
|
+
readonly extraProperties?: Record<string, any> | null;
|
|
8
|
+
id?: string;
|
|
9
|
+
creationTime?: string;
|
|
10
|
+
creatorId?: string | null;
|
|
11
|
+
lastModificationTime?: string | null;
|
|
12
|
+
lastModifierId?: string | null;
|
|
13
|
+
isDeleted?: boolean;
|
|
14
|
+
deleterId?: string | null;
|
|
15
|
+
deletionTime?: string | null;
|
|
16
|
+
parentId?: string | null;
|
|
17
|
+
code?: string | null;
|
|
18
|
+
displayName?: string | null;
|
|
19
|
+
roles?: Array<Volo_Abp_Identity_OrganizationUnitRoleDto> | null;
|
|
20
|
+
};
|
|
21
|
+
|
|
@@ -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 Volo_Abp_Identity_OrganizationUnitRoleDto = {
|
|
6
|
+
creationTime?: string;
|
|
7
|
+
creatorId?: string | null;
|
|
8
|
+
organizationUnitId?: string;
|
|
9
|
+
roleId?: string;
|
|
10
|
+
};
|
|
11
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_Identity_OrganizationUnitUpdateDto = {
|
|
6
|
+
readonly extraProperties?: Record<string, any> | null;
|
|
7
|
+
displayName: string;
|
|
8
|
+
concurrencyStamp?: string | null;
|
|
9
|
+
};
|
|
10
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
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_IdentityRoleDto } from './Volo_Abp_Identity_IdentityRoleDto';
|
|
6
|
+
export type Volo_Abp_Identity_OrganizationUnitWithDetailsDto = {
|
|
7
|
+
readonly extraProperties?: Record<string, any> | null;
|
|
8
|
+
id?: string;
|
|
9
|
+
creationTime?: string;
|
|
10
|
+
creatorId?: string | null;
|
|
11
|
+
lastModificationTime?: string | null;
|
|
12
|
+
lastModifierId?: string | null;
|
|
13
|
+
isDeleted?: boolean;
|
|
14
|
+
deleterId?: string | null;
|
|
15
|
+
deletionTime?: string | null;
|
|
16
|
+
parentId?: string | null;
|
|
17
|
+
code?: string | null;
|
|
18
|
+
displayName?: string | null;
|
|
19
|
+
roles?: Array<Volo_Abp_Identity_IdentityRoleDto> | null;
|
|
20
|
+
userCount?: number;
|
|
21
|
+
concurrencyStamp?: string | null;
|
|
22
|
+
};
|
|
23
|
+
|
|
@@ -0,0 +1,16 @@
|
|
|
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_IdentityClaimValueType } from './Volo_Abp_Identity_IdentityClaimValueType';
|
|
6
|
+
export type Volo_Abp_Identity_UpdateClaimTypeDto = {
|
|
7
|
+
readonly extraProperties?: Record<string, any> | null;
|
|
8
|
+
name: string;
|
|
9
|
+
required?: boolean;
|
|
10
|
+
regex?: string | null;
|
|
11
|
+
regexDescription?: string | null;
|
|
12
|
+
description?: string | null;
|
|
13
|
+
valueType?: Volo_Abp_Identity_IdentityClaimValueType;
|
|
14
|
+
concurrencyStamp?: string | null;
|
|
15
|
+
};
|
|
16
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_Localization_LanguageInfo = {
|
|
6
|
+
cultureName?: string | null;
|
|
7
|
+
uiCultureName?: string | null;
|
|
8
|
+
displayName?: string | null;
|
|
9
|
+
readonly twoLetterISOLanguageName?: string | null;
|
|
10
|
+
flagIcon?: string | null;
|
|
11
|
+
};
|
|
12
|
+
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_OpenIddict_Applications_Dtos_ApplicationDto = {
|
|
6
|
+
readonly extraProperties?: Record<string, any> | null;
|
|
7
|
+
id?: string;
|
|
8
|
+
applicationType?: string | null;
|
|
9
|
+
clientId?: string | null;
|
|
10
|
+
displayName?: string | null;
|
|
11
|
+
clientType?: string | null;
|
|
12
|
+
clientSecret?: string | null;
|
|
13
|
+
consentType?: string | null;
|
|
14
|
+
extensionGrantTypes?: Array<string> | null;
|
|
15
|
+
postLogoutRedirectUris?: Array<string> | null;
|
|
16
|
+
redirectUris?: Array<string> | null;
|
|
17
|
+
allowPasswordFlow?: boolean;
|
|
18
|
+
allowClientCredentialsFlow?: boolean;
|
|
19
|
+
allowAuthorizationCodeFlow?: boolean;
|
|
20
|
+
allowRefreshTokenFlow?: boolean;
|
|
21
|
+
allowHybridFlow?: boolean;
|
|
22
|
+
allowImplicitFlow?: boolean;
|
|
23
|
+
allowLogoutEndpoint?: boolean;
|
|
24
|
+
allowDeviceEndpoint?: boolean;
|
|
25
|
+
scopes?: Array<string> | null;
|
|
26
|
+
clientUri?: string | null;
|
|
27
|
+
logoUri?: string | null;
|
|
28
|
+
};
|
|
29
|
+
|
package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationTokenLifetimeDto.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_OpenIddict_Applications_Dtos_ApplicationTokenLifetimeDto = {
|
|
6
|
+
accessTokenLifetime?: number | null;
|
|
7
|
+
authorizationCodeLifetime?: number | null;
|
|
8
|
+
deviceCodeLifetime?: number | null;
|
|
9
|
+
identityTokenLifetime?: number | null;
|
|
10
|
+
refreshTokenLifetime?: number | null;
|
|
11
|
+
userCodeLifetime?: number | null;
|
|
12
|
+
};
|
|
13
|
+
|
package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_CreateApplicationInput.ts
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_OpenIddict_Applications_Dtos_CreateApplicationInput = {
|
|
6
|
+
readonly extraProperties?: Record<string, any> | null;
|
|
7
|
+
applicationType: string;
|
|
8
|
+
clientId: string;
|
|
9
|
+
displayName: string;
|
|
10
|
+
clientType?: string | null;
|
|
11
|
+
clientSecret?: string | null;
|
|
12
|
+
consentType?: string | null;
|
|
13
|
+
extensionGrantTypes?: Array<string> | null;
|
|
14
|
+
postLogoutRedirectUris?: Array<string> | null;
|
|
15
|
+
redirectUris?: Array<string> | null;
|
|
16
|
+
allowPasswordFlow?: boolean;
|
|
17
|
+
allowClientCredentialsFlow?: boolean;
|
|
18
|
+
allowAuthorizationCodeFlow?: boolean;
|
|
19
|
+
allowRefreshTokenFlow?: boolean;
|
|
20
|
+
allowHybridFlow?: boolean;
|
|
21
|
+
allowImplicitFlow?: boolean;
|
|
22
|
+
allowLogoutEndpoint?: boolean;
|
|
23
|
+
allowDeviceEndpoint?: boolean;
|
|
24
|
+
scopes?: Array<string> | null;
|
|
25
|
+
clientUri?: string | null;
|
|
26
|
+
logoUri?: string | null;
|
|
27
|
+
};
|
|
28
|
+
|
package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_UpdateApplicationInput.ts
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_OpenIddict_Applications_Dtos_UpdateApplicationInput = {
|
|
6
|
+
readonly extraProperties?: Record<string, any> | null;
|
|
7
|
+
applicationType: string;
|
|
8
|
+
clientId: string;
|
|
9
|
+
displayName: string;
|
|
10
|
+
clientType?: string | null;
|
|
11
|
+
clientSecret?: string | null;
|
|
12
|
+
consentType?: string | null;
|
|
13
|
+
extensionGrantTypes?: Array<string> | null;
|
|
14
|
+
postLogoutRedirectUris?: Array<string> | null;
|
|
15
|
+
redirectUris?: Array<string> | null;
|
|
16
|
+
allowPasswordFlow?: boolean;
|
|
17
|
+
allowClientCredentialsFlow?: boolean;
|
|
18
|
+
allowAuthorizationCodeFlow?: boolean;
|
|
19
|
+
allowRefreshTokenFlow?: boolean;
|
|
20
|
+
allowHybridFlow?: boolean;
|
|
21
|
+
allowImplicitFlow?: boolean;
|
|
22
|
+
allowLogoutEndpoint?: boolean;
|
|
23
|
+
allowDeviceEndpoint?: boolean;
|
|
24
|
+
scopes?: Array<string> | null;
|
|
25
|
+
clientUri?: string | null;
|
|
26
|
+
logoUri?: string | null;
|
|
27
|
+
};
|
|
28
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_OpenIddict_Scopes_Dtos_CreateScopeInput = {
|
|
6
|
+
readonly extraProperties?: Record<string, any> | null;
|
|
7
|
+
name: string;
|
|
8
|
+
displayName?: string | null;
|
|
9
|
+
description?: string | null;
|
|
10
|
+
resources?: Array<string> | null;
|
|
11
|
+
};
|
|
12
|
+
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_OpenIddict_Scopes_Dtos_ScopeDto = {
|
|
6
|
+
readonly extraProperties?: Record<string, any> | null;
|
|
7
|
+
id?: string;
|
|
8
|
+
name?: string | null;
|
|
9
|
+
displayName?: string | null;
|
|
10
|
+
description?: string | null;
|
|
11
|
+
buildIn?: boolean;
|
|
12
|
+
resources?: Array<string> | null;
|
|
13
|
+
};
|
|
14
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_OpenIddict_Scopes_Dtos_UpdateScopeInput = {
|
|
6
|
+
readonly extraProperties?: Record<string, any> | null;
|
|
7
|
+
name: string;
|
|
8
|
+
displayName?: string | null;
|
|
9
|
+
description?: string | null;
|
|
10
|
+
resources?: Array<string> | null;
|
|
11
|
+
};
|
|
12
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_Users_UserData = {
|
|
6
|
+
id?: string;
|
|
7
|
+
tenantId?: string | null;
|
|
8
|
+
userName?: string | null;
|
|
9
|
+
name?: string | null;
|
|
10
|
+
surname?: string | null;
|
|
11
|
+
isActive?: boolean;
|
|
12
|
+
email?: string | null;
|
|
13
|
+
emailConfirmed?: boolean;
|
|
14
|
+
phoneNumber?: string | null;
|
|
15
|
+
phoneNumberConfirmed?: boolean;
|
|
16
|
+
readonly extraProperties?: Record<string, any> | null;
|
|
17
|
+
};
|
|
18
|
+
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel } from '../models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel';
|
|
6
|
+
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
7
|
+
import type { BaseHttpRequest } from '../core/BaseHttpRequest';
|
|
8
|
+
export class AbpApiDefinitionService {
|
|
9
|
+
constructor(public readonly httpRequest: BaseHttpRequest) {}
|
|
10
|
+
/**
|
|
11
|
+
* @param includeTypes
|
|
12
|
+
* @returns Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel Success
|
|
13
|
+
* @throws ApiError
|
|
14
|
+
*/
|
|
15
|
+
public getApiAbpApiDefinition(
|
|
16
|
+
includeTypes?: boolean,
|
|
17
|
+
): CancelablePromise<Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel> {
|
|
18
|
+
return this.httpRequest.request({
|
|
19
|
+
method: 'GET',
|
|
20
|
+
url: '/api/abp/api-definition',
|
|
21
|
+
query: {
|
|
22
|
+
'IncludeTypes': includeTypes,
|
|
23
|
+
},
|
|
24
|
+
errors: {
|
|
25
|
+
400: `Bad Request`,
|
|
26
|
+
401: `Unauthorized`,
|
|
27
|
+
403: `Forbidden`,
|
|
28
|
+
404: `Not Found`,
|
|
29
|
+
500: `Server Error`,
|
|
30
|
+
501: `Server Error`,
|
|
31
|
+
},
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto } from '../models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto';
|
|
6
|
+
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
7
|
+
import type { BaseHttpRequest } from '../core/BaseHttpRequest';
|
|
8
|
+
export class AbpApplicationConfigurationService {
|
|
9
|
+
constructor(public readonly httpRequest: BaseHttpRequest) {}
|
|
10
|
+
/**
|
|
11
|
+
* @param includeLocalizationResources
|
|
12
|
+
* @returns Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto Success
|
|
13
|
+
* @throws ApiError
|
|
14
|
+
*/
|
|
15
|
+
public getApiAbpApplicationConfiguration(
|
|
16
|
+
includeLocalizationResources?: boolean,
|
|
17
|
+
): CancelablePromise<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto> {
|
|
18
|
+
return this.httpRequest.request({
|
|
19
|
+
method: 'GET',
|
|
20
|
+
url: '/api/abp/application-configuration',
|
|
21
|
+
query: {
|
|
22
|
+
'IncludeLocalizationResources': includeLocalizationResources,
|
|
23
|
+
},
|
|
24
|
+
errors: {
|
|
25
|
+
400: `Bad Request`,
|
|
26
|
+
401: `Unauthorized`,
|
|
27
|
+
403: `Forbidden`,
|
|
28
|
+
404: `Not Found`,
|
|
29
|
+
500: `Server Error`,
|
|
30
|
+
501: `Server Error`,
|
|
31
|
+
},
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto } from '../models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto';
|
|
6
|
+
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
7
|
+
import type { BaseHttpRequest } from '../core/BaseHttpRequest';
|
|
8
|
+
export class AbpApplicationLocalizationService {
|
|
9
|
+
constructor(public readonly httpRequest: BaseHttpRequest) {}
|
|
10
|
+
/**
|
|
11
|
+
* @param cultureName
|
|
12
|
+
* @param onlyDynamics
|
|
13
|
+
* @returns Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto Success
|
|
14
|
+
* @throws ApiError
|
|
15
|
+
*/
|
|
16
|
+
public getApiAbpApplicationLocalization(
|
|
17
|
+
cultureName: string,
|
|
18
|
+
onlyDynamics?: boolean,
|
|
19
|
+
): CancelablePromise<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto> {
|
|
20
|
+
return this.httpRequest.request({
|
|
21
|
+
method: 'GET',
|
|
22
|
+
url: '/api/abp/application-localization',
|
|
23
|
+
query: {
|
|
24
|
+
'CultureName': cultureName,
|
|
25
|
+
'OnlyDynamics': onlyDynamics,
|
|
26
|
+
},
|
|
27
|
+
errors: {
|
|
28
|
+
400: `Bad Request`,
|
|
29
|
+
401: `Unauthorized`,
|
|
30
|
+
403: `Forbidden`,
|
|
31
|
+
404: `Not Found`,
|
|
32
|
+
500: `Server Error`,
|
|
33
|
+
501: `Server Error`,
|
|
34
|
+
},
|
|
35
|
+
});
|
|
36
|
+
}
|
|
37
|
+
}
|