@ayasofyazilim/saas 0.0.2 → 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 +13 -7
|
@@ -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_AuditLogging_EntityPropertyChangeDto = {
|
|
6
|
+
id?: string;
|
|
7
|
+
tenantId?: string | null;
|
|
8
|
+
entityChangeId?: string;
|
|
9
|
+
newValue?: string | null;
|
|
10
|
+
originalValue?: string | null;
|
|
11
|
+
propertyName?: string | null;
|
|
12
|
+
propertyTypeFullName?: string | null;
|
|
13
|
+
};
|
|
14
|
+
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_AuditLogging_GetAverageExecutionDurationPerDayOutput = {
|
|
6
|
+
data?: Record<string, number | null> | null;
|
|
7
|
+
};
|
|
8
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_FeatureManagement_FeatureProviderDto } from './Volo_Abp_FeatureManagement_FeatureProviderDto';
|
|
6
|
+
import type { Volo_Abp_Validation_StringValues_IStringValueType } from './Volo_Abp_Validation_StringValues_IStringValueType';
|
|
7
|
+
export type Volo_Abp_FeatureManagement_FeatureDto = {
|
|
8
|
+
name?: string | null;
|
|
9
|
+
displayName?: string | null;
|
|
10
|
+
value?: string | null;
|
|
11
|
+
provider?: Volo_Abp_FeatureManagement_FeatureProviderDto;
|
|
12
|
+
description?: string | null;
|
|
13
|
+
valueType?: Volo_Abp_Validation_StringValues_IStringValueType;
|
|
14
|
+
depth?: number;
|
|
15
|
+
parentName?: string | null;
|
|
16
|
+
};
|
|
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
|
+
import type { Volo_Abp_FeatureManagement_FeatureDto } from './Volo_Abp_FeatureManagement_FeatureDto';
|
|
6
|
+
export type Volo_Abp_FeatureManagement_FeatureGroupDto = {
|
|
7
|
+
name?: string | null;
|
|
8
|
+
displayName?: string | null;
|
|
9
|
+
features?: Array<Volo_Abp_FeatureManagement_FeatureDto> | null;
|
|
10
|
+
};
|
|
11
|
+
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_FeatureManagement_FeatureGroupDto } from './Volo_Abp_FeatureManagement_FeatureGroupDto';
|
|
6
|
+
export type Volo_Abp_FeatureManagement_GetFeatureListResultDto = {
|
|
7
|
+
groups?: Array<Volo_Abp_FeatureManagement_FeatureGroupDto> | null;
|
|
8
|
+
};
|
|
9
|
+
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_FeatureManagement_UpdateFeatureDto } from './Volo_Abp_FeatureManagement_UpdateFeatureDto';
|
|
6
|
+
export type Volo_Abp_FeatureManagement_UpdateFeaturesDto = {
|
|
7
|
+
features?: Array<Volo_Abp_FeatureManagement_UpdateFeatureDto> | null;
|
|
8
|
+
};
|
|
9
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
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_MethodParameterApiDescriptionModel } from './Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel';
|
|
6
|
+
import type { Volo_Abp_Http_Modeling_ParameterApiDescriptionModel } from './Volo_Abp_Http_Modeling_ParameterApiDescriptionModel';
|
|
7
|
+
import type { Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel } from './Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel';
|
|
8
|
+
export type Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
|
|
9
|
+
uniqueName?: string | null;
|
|
10
|
+
name?: string | null;
|
|
11
|
+
httpMethod?: string | null;
|
|
12
|
+
url?: string | null;
|
|
13
|
+
supportedVersions?: Array<string> | null;
|
|
14
|
+
parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
|
|
15
|
+
parameters?: Array<Volo_Abp_Http_Modeling_ParameterApiDescriptionModel> | null;
|
|
16
|
+
returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
|
|
17
|
+
allowAnonymous?: boolean | null;
|
|
18
|
+
implementFrom?: string | null;
|
|
19
|
+
};
|
|
20
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
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_ModuleApiDescriptionModel } from './Volo_Abp_Http_Modeling_ModuleApiDescriptionModel';
|
|
6
|
+
import type { Volo_Abp_Http_Modeling_TypeApiDescriptionModel } from './Volo_Abp_Http_Modeling_TypeApiDescriptionModel';
|
|
7
|
+
export type Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
|
|
8
|
+
modules?: Record<string, Volo_Abp_Http_Modeling_ModuleApiDescriptionModel> | null;
|
|
9
|
+
types?: Record<string, Volo_Abp_Http_Modeling_TypeApiDescriptionModel> | null;
|
|
10
|
+
};
|
|
11
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
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_ActionApiDescriptionModel } from './Volo_Abp_Http_Modeling_ActionApiDescriptionModel';
|
|
6
|
+
import type { Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel } from './Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel';
|
|
7
|
+
export type Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
|
|
8
|
+
controllerName?: string | null;
|
|
9
|
+
controllerGroupName?: string | null;
|
|
10
|
+
isRemoteService?: boolean;
|
|
11
|
+
isIntegrationService?: boolean;
|
|
12
|
+
apiVersion?: string | null;
|
|
13
|
+
type?: string | null;
|
|
14
|
+
interfaces?: Array<Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel> | null;
|
|
15
|
+
actions?: Record<string, Volo_Abp_Http_Modeling_ActionApiDescriptionModel> | null;
|
|
16
|
+
};
|
|
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
|
+
import type { Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel } from './Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel';
|
|
6
|
+
export type Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
|
|
7
|
+
type?: string | null;
|
|
8
|
+
name?: string | null;
|
|
9
|
+
methods?: Array<Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel> | null;
|
|
10
|
+
};
|
|
11
|
+
|
package/AdministrationService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
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_MethodParameterApiDescriptionModel } from './Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel';
|
|
6
|
+
import type { Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel } from './Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel';
|
|
7
|
+
export type Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
|
|
8
|
+
name?: string | null;
|
|
9
|
+
parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
|
|
10
|
+
returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
|
|
11
|
+
};
|
|
12
|
+
|
package/AdministrationService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.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_Http_Modeling_MethodParameterApiDescriptionModel = {
|
|
6
|
+
name?: string | null;
|
|
7
|
+
typeAsString?: string | null;
|
|
8
|
+
type?: string | null;
|
|
9
|
+
typeSimple?: string | null;
|
|
10
|
+
isOptional?: boolean;
|
|
11
|
+
defaultValue?: any;
|
|
12
|
+
};
|
|
13
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
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_ControllerApiDescriptionModel } from './Volo_Abp_Http_Modeling_ControllerApiDescriptionModel';
|
|
6
|
+
export type Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
|
|
7
|
+
rootPath?: string | null;
|
|
8
|
+
remoteServiceName?: string | null;
|
|
9
|
+
controllers?: Record<string, Volo_Abp_Http_Modeling_ControllerApiDescriptionModel> | null;
|
|
10
|
+
};
|
|
11
|
+
|
|
@@ -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 Volo_Abp_Http_Modeling_ParameterApiDescriptionModel = {
|
|
6
|
+
nameOnMethod?: string | null;
|
|
7
|
+
name?: string | null;
|
|
8
|
+
jsonName?: string | null;
|
|
9
|
+
type?: string | null;
|
|
10
|
+
typeSimple?: string | null;
|
|
11
|
+
isOptional?: boolean;
|
|
12
|
+
defaultValue?: any;
|
|
13
|
+
constraintTypes?: Array<string> | null;
|
|
14
|
+
bindingSourceId?: string | null;
|
|
15
|
+
descriptorName?: string | null;
|
|
16
|
+
};
|
|
17
|
+
|
|
@@ -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 Volo_Abp_Http_Modeling_PropertyApiDescriptionModel = {
|
|
6
|
+
name?: string | null;
|
|
7
|
+
jsonName?: string | null;
|
|
8
|
+
type?: string | null;
|
|
9
|
+
typeSimple?: string | null;
|
|
10
|
+
isRequired?: boolean;
|
|
11
|
+
minLength?: number | null;
|
|
12
|
+
maxLength?: number | null;
|
|
13
|
+
minimum?: string | null;
|
|
14
|
+
maximum?: string | null;
|
|
15
|
+
regex?: string | null;
|
|
16
|
+
};
|
|
17
|
+
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel = {
|
|
6
|
+
type?: string | null;
|
|
7
|
+
typeSimple?: string | null;
|
|
8
|
+
};
|
|
9
|
+
|
|
@@ -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 { Volo_Abp_Http_Modeling_PropertyApiDescriptionModel } from './Volo_Abp_Http_Modeling_PropertyApiDescriptionModel';
|
|
6
|
+
export type Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
|
|
7
|
+
baseType?: string | null;
|
|
8
|
+
isEnum?: boolean;
|
|
9
|
+
enumNames?: Array<string> | null;
|
|
10
|
+
enumValues?: Array<any> | null;
|
|
11
|
+
genericArguments?: Array<string> | null;
|
|
12
|
+
properties?: Array<Volo_Abp_Http_Modeling_PropertyApiDescriptionModel> | null;
|
|
13
|
+
};
|
|
14
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
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_RemoteServiceValidationErrorInfo } from './Volo_Abp_Http_RemoteServiceValidationErrorInfo';
|
|
6
|
+
export type Volo_Abp_Http_RemoteServiceErrorInfo = {
|
|
7
|
+
code?: string | null;
|
|
8
|
+
message?: string | null;
|
|
9
|
+
details?: string | null;
|
|
10
|
+
data?: Record<string, any> | null;
|
|
11
|
+
validationErrors?: Array<Volo_Abp_Http_RemoteServiceValidationErrorInfo> | null;
|
|
12
|
+
};
|
|
13
|
+
|
|
@@ -0,0 +1,9 @@
|
|
|
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_RemoteServiceErrorInfo } from './Volo_Abp_Http_RemoteServiceErrorInfo';
|
|
6
|
+
export type Volo_Abp_Http_RemoteServiceErrorResponse = {
|
|
7
|
+
error?: Volo_Abp_Http_RemoteServiceErrorInfo;
|
|
8
|
+
};
|
|
9
|
+
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
|
|
6
|
+
message?: string | null;
|
|
7
|
+
members?: Array<string> | null;
|
|
8
|
+
};
|
|
9
|
+
|
|
@@ -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_LanguageManagement_Dto_CreateLanguageDto = {
|
|
6
|
+
readonly extraProperties?: Record<string, any> | null;
|
|
7
|
+
displayName?: string | null;
|
|
8
|
+
cultureName?: string | null;
|
|
9
|
+
uiCultureName?: string | null;
|
|
10
|
+
flagIcon?: string | null;
|
|
11
|
+
isEnabled?: boolean;
|
|
12
|
+
};
|
|
13
|
+
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_LanguageManagement_Dto_CultureInfoDto = {
|
|
6
|
+
displayName?: string | null;
|
|
7
|
+
name?: string | null;
|
|
8
|
+
};
|
|
9
|
+
|
|
@@ -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_LanguageManagement_Dto_LanguageDto = {
|
|
6
|
+
readonly extraProperties?: Record<string, any> | null;
|
|
7
|
+
id?: string;
|
|
8
|
+
creationTime?: string;
|
|
9
|
+
creatorId?: string | null;
|
|
10
|
+
cultureName?: string | null;
|
|
11
|
+
uiCultureName?: string | null;
|
|
12
|
+
displayName?: string | null;
|
|
13
|
+
flagIcon?: string | null;
|
|
14
|
+
isEnabled?: boolean;
|
|
15
|
+
isDefaultLanguage?: boolean;
|
|
16
|
+
concurrencyStamp?: string | null;
|
|
17
|
+
};
|
|
18
|
+
|
|
@@ -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_LanguageManagement_Dto_LanguageTextDto = {
|
|
6
|
+
resourceName?: string | null;
|
|
7
|
+
cultureName?: string | null;
|
|
8
|
+
baseCultureName?: string | null;
|
|
9
|
+
baseValue?: string | null;
|
|
10
|
+
name?: string | null;
|
|
11
|
+
value?: string | null;
|
|
12
|
+
};
|
|
13
|
+
|
|
@@ -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_LanguageManagement_Dto_UpdateLanguageDto = {
|
|
6
|
+
readonly extraProperties?: Record<string, any> | null;
|
|
7
|
+
displayName?: string | null;
|
|
8
|
+
flagIcon?: string | null;
|
|
9
|
+
isEnabled?: boolean;
|
|
10
|
+
concurrencyStamp?: string | null;
|
|
11
|
+
};
|
|
12
|
+
|
|
@@ -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
|
+
|
package/AdministrationService/models/Volo_Abp_PermissionManagement_GetPermissionListResultDto.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_PermissionManagement_PermissionGroupDto } from './Volo_Abp_PermissionManagement_PermissionGroupDto';
|
|
6
|
+
export type Volo_Abp_PermissionManagement_GetPermissionListResultDto = {
|
|
7
|
+
entityDisplayName?: string | null;
|
|
8
|
+
groups?: Array<Volo_Abp_PermissionManagement_PermissionGroupDto> | null;
|
|
9
|
+
};
|
|
10
|
+
|
|
@@ -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 { Volo_Abp_PermissionManagement_ProviderInfoDto } from './Volo_Abp_PermissionManagement_ProviderInfoDto';
|
|
6
|
+
export type Volo_Abp_PermissionManagement_PermissionGrantInfoDto = {
|
|
7
|
+
name?: string | null;
|
|
8
|
+
displayName?: string | null;
|
|
9
|
+
parentName?: string | null;
|
|
10
|
+
isGranted?: boolean;
|
|
11
|
+
allowedProviders?: Array<string> | null;
|
|
12
|
+
grantedProviders?: Array<Volo_Abp_PermissionManagement_ProviderInfoDto> | null;
|
|
13
|
+
};
|
|
14
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_PermissionManagement_PermissionGrantInfoDto } from './Volo_Abp_PermissionManagement_PermissionGrantInfoDto';
|
|
6
|
+
export type Volo_Abp_PermissionManagement_PermissionGroupDto = {
|
|
7
|
+
name?: string | null;
|
|
8
|
+
displayName?: string | null;
|
|
9
|
+
displayNameKey?: string | null;
|
|
10
|
+
displayNameResource?: string | null;
|
|
11
|
+
permissions?: Array<Volo_Abp_PermissionManagement_PermissionGrantInfoDto> | null;
|
|
12
|
+
};
|
|
13
|
+
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_PermissionManagement_ProviderInfoDto = {
|
|
6
|
+
providerName?: string | null;
|
|
7
|
+
providerKey?: string | null;
|
|
8
|
+
};
|
|
9
|
+
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_PermissionManagement_UpdatePermissionDto } from './Volo_Abp_PermissionManagement_UpdatePermissionDto';
|
|
6
|
+
export type Volo_Abp_PermissionManagement_UpdatePermissionsDto = {
|
|
7
|
+
permissions?: Array<Volo_Abp_PermissionManagement_UpdatePermissionDto> | null;
|
|
8
|
+
};
|
|
9
|
+
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_SettingManagement_EmailSettingsDto = {
|
|
6
|
+
smtpHost?: string | null;
|
|
7
|
+
smtpPort?: number;
|
|
8
|
+
smtpUserName?: string | null;
|
|
9
|
+
smtpPassword?: string | null;
|
|
10
|
+
smtpDomain?: string | null;
|
|
11
|
+
smtpEnableSsl?: boolean;
|
|
12
|
+
smtpUseDefaultCredentials?: boolean;
|
|
13
|
+
defaultFromAddress?: string | null;
|
|
14
|
+
defaultFromDisplayName?: string | null;
|
|
15
|
+
};
|
|
16
|
+
|
|
@@ -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_SettingManagement_SendTestEmailInput = {
|
|
6
|
+
senderEmailAddress: string;
|
|
7
|
+
targetEmailAddress: string;
|
|
8
|
+
subject: string;
|
|
9
|
+
body?: string | null;
|
|
10
|
+
};
|
|
11
|
+
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_SettingManagement_UpdateEmailSettingsDto = {
|
|
6
|
+
smtpHost?: string | null;
|
|
7
|
+
smtpPort?: number;
|
|
8
|
+
smtpUserName?: string | null;
|
|
9
|
+
smtpPassword?: string | null;
|
|
10
|
+
smtpDomain?: string | null;
|
|
11
|
+
smtpEnableSsl?: boolean;
|
|
12
|
+
smtpUseDefaultCredentials?: boolean;
|
|
13
|
+
defaultFromAddress: string;
|
|
14
|
+
defaultFromDisplayName: string;
|
|
15
|
+
};
|
|
16
|
+
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_TextTemplateManagement_TextTemplates_RestoreTemplateContentInput = {
|
|
6
|
+
templateName: string;
|
|
7
|
+
cultureName?: string | null;
|
|
8
|
+
};
|
|
9
|
+
|
|
@@ -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_TextTemplateManagement_TextTemplates_TemplateDefinitionDto = {
|
|
6
|
+
name?: string | null;
|
|
7
|
+
displayName?: string | null;
|
|
8
|
+
isLayout?: boolean;
|
|
9
|
+
layout?: string | null;
|
|
10
|
+
isInlineLocalized?: boolean;
|
|
11
|
+
defaultCultureName?: string | null;
|
|
12
|
+
};
|
|
13
|
+
|
|
@@ -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_TextTemplateManagement_TextTemplates_TextTemplateContentDto = {
|
|
6
|
+
name?: string | null;
|
|
7
|
+
cultureName?: string | null;
|
|
8
|
+
content?: string | null;
|
|
9
|
+
};
|
|
10
|
+
|
|
@@ -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_TextTemplateManagement_TextTemplates_UpdateTemplateContentInput = {
|
|
6
|
+
templateName: string;
|
|
7
|
+
cultureName?: string | null;
|
|
8
|
+
content?: string | null;
|
|
9
|
+
};
|
|
10
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_Validation_StringValues_IValueValidator } from './Volo_Abp_Validation_StringValues_IValueValidator';
|
|
6
|
+
export type Volo_Abp_Validation_StringValues_IStringValueType = {
|
|
7
|
+
readonly name?: string | null;
|
|
8
|
+
readonly properties?: Record<string, any> | null;
|
|
9
|
+
validator?: Volo_Abp_Validation_StringValues_IValueValidator;
|
|
10
|
+
};
|
|
11
|
+
|