@ayasofyazilim/saas 0.0.2
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/AccountServiceClient.ts +58 -0
- package/AccountService/core/ApiError.ts +25 -0
- package/AccountService/core/ApiRequestOptions.ts +17 -0
- package/AccountService/core/ApiResult.ts +11 -0
- package/AccountService/core/BaseHttpRequest.ts +14 -0
- package/AccountService/core/CancelablePromise.ts +131 -0
- package/AccountService/core/FetchHttpRequest.ts +26 -0
- package/AccountService/core/OpenAPI.ts +32 -0
- package/AccountService/core/request.ts +322 -0
- package/AccountService/index.ts +122 -0
- package/AccountService/models/Volo_Abp_Account_AccountExternalProviderSettingsDto.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_AccountRecaptchaSettingsDto.ts +14 -0
- package/AccountService/models/Volo_Abp_Account_AccountSettingsDto.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_AccountTwoFactorSettingsDto.ts +11 -0
- package/AccountService/models/Volo_Abp_Account_AuthenticatorInfoDto.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_ChangePasswordInput.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_ConfirmEmailInput.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_ConfirmPhoneNumberInput.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_DelegateNewUserInput.ts +10 -0
- package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderDto.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemDto.ts +11 -0
- package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto.ts +13 -0
- package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettings.ts +12 -0
- package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_IdentityUserConfirmationStateDto.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_IsLinkedInput.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_LinkUserDto.ts +12 -0
- package/AccountService/models/Volo_Abp_Account_LinkUserInput.ts +10 -0
- package/AccountService/models/Volo_Abp_Account_ProfileDto.ts +20 -0
- package/AccountService/models/Volo_Abp_Account_ProfilePictureSourceDto.ts +11 -0
- package/AccountService/models/Volo_Abp_Account_ProfilePictureType.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult.ts +10 -0
- package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LinkUserLoginInfo.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LoginResultType.ts +12 -0
- package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_UserLoginInfo.ts +11 -0
- package/AccountService/models/Volo_Abp_Account_RegisterDto.ts +15 -0
- package/AccountService/models/Volo_Abp_Account_ResetPasswordDto.ts +10 -0
- package/AccountService/models/Volo_Abp_Account_SendEmailConfirmationTokenDto.ts +11 -0
- package/AccountService/models/Volo_Abp_Account_SendPasswordResetCodeDto.ts +11 -0
- package/AccountService/models/Volo_Abp_Account_SendPhoneNumberConfirmationTokenDto.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_SendTwoFactorCodeInput.ts +10 -0
- package/AccountService/models/Volo_Abp_Account_UnLinkUserInput.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_UpdateExternalProviderDto.ts +12 -0
- package/AccountService/models/Volo_Abp_Account_UpdateProfileDto.ts +15 -0
- package/AccountService/models/Volo_Abp_Account_UserDelegationDto.ts +11 -0
- package/AccountService/models/Volo_Abp_Account_UserLookupDto.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_VerifyAuthenticatorCodeDto.ts +8 -0
- package/AccountService/models/Volo_Abp_Account_VerifyAuthenticatorCodeInput.ts +8 -0
- package/AccountService/models/Volo_Abp_Account_VerifyEmailConfirmationTokenInput.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_VerifyLinkLoginTokenInput.ts +10 -0
- package/AccountService/models/Volo_Abp_Account_VerifyLinkTokenInput.ts +10 -0
- package/AccountService/models/Volo_Abp_Account_VerifyPasswordResetTokenInput.ts +9 -0
- package/AccountService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -0
- package/AccountService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto.ts +11 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -0
- package/AccountService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -0
- package/AccountService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -0
- package/AccountService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -0
- package/AccountService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -0
- package/AccountService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -0
- package/AccountService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -0
- package/AccountService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -0
- package/AccountService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -0
- package/AccountService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -0
- package/AccountService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -0
- package/AccountService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -0
- package/AccountService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -0
- package/AccountService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -0
- package/AccountService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -0
- package/AccountService/models/Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour.ts +9 -0
- package/AccountService/models/Volo_Abp_Identity_IdentitySecurityLogDto.ts +21 -0
- package/AccountService/models/Volo_Abp_Identity_IdentityUserDto.ts +35 -0
- package/AccountService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -0
- package/AccountService/models/Volo_Abp_NameValue.ts +9 -0
- package/AccountService/services/AbpApiDefinitionService.ts +34 -0
- package/AccountService/services/AbpApplicationConfigurationService.ts +34 -0
- package/AccountService/services/AbpApplicationLocalizationService.ts +37 -0
- package/AccountService/services/AbpTenantService.ts +58 -0
- package/AccountService/services/AccountExternalProviderService.ts +56 -0
- package/AccountService/services/AccountService.ts +545 -0
- package/AccountService/services/AccountSettingsService.ts +178 -0
- package/AccountService/services/DynamicClaimsService.ts +27 -0
- package/AccountService/services/LoginService.ts +99 -0
- package/AccountService/services/ProfileService.ts +155 -0
- package/AccountService/services/UserService.ts +313 -0
- package/ProjectService/ProjectServiceClient.ts +40 -0
- package/ProjectService/core/ApiError.ts +25 -0
- package/ProjectService/core/ApiRequestOptions.ts +17 -0
- package/ProjectService/core/ApiResult.ts +11 -0
- package/ProjectService/core/BaseHttpRequest.ts +14 -0
- package/ProjectService/core/CancelablePromise.ts +131 -0
- package/ProjectService/core/FetchHttpRequest.ts +26 -0
- package/ProjectService/core/OpenAPI.ts +32 -0
- package/ProjectService/core/request.ts +322 -0
- package/ProjectService/index.ts +73 -0
- package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectsDto_SaveProjectDto.ts +19 -0
- package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectsDto_UpdateProjectDto.ts +20 -0
- package/ProjectService/models/UpWithCrowdDemo_ProjectService_Projects_ProjectDto.ts +20 -0
- package/ProjectService/models/UpWithCrowdDemo_ProjectService_Samples_SampleDto.ts +8 -0
- package/ProjectService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -0
- package/ProjectService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -0
- package/ProjectService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -0
- package/ProjectService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -0
- package/ProjectService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -0
- package/ProjectService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -0
- package/ProjectService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -0
- package/ProjectService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -0
- package/ProjectService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -0
- package/ProjectService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -0
- package/ProjectService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -0
- package/ProjectService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -0
- package/ProjectService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -0
- package/ProjectService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -0
- package/ProjectService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -0
- package/ProjectService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -0
- package/ProjectService/models/Volo_Abp_NameValue.ts +9 -0
- package/ProjectService/services/AbpApiDefinitionService.ts +34 -0
- package/ProjectService/services/AbpApplicationConfigurationService.ts +34 -0
- package/ProjectService/services/AbpApplicationLocalizationService.ts +37 -0
- package/ProjectService/services/ProjectService.ts +143 -0
- package/ProjectService/services/SampleServiceService.ts +46 -0
- package/ProjectService.json +2938 -0
- package/index.ts +2 -0
- package/package.json +17 -0
|
@@ -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,21 @@
|
|
|
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_IdentitySecurityLogDto = {
|
|
6
|
+
id?: string;
|
|
7
|
+
tenantId?: string | null;
|
|
8
|
+
applicationName?: string | null;
|
|
9
|
+
identity?: string | null;
|
|
10
|
+
action?: string | null;
|
|
11
|
+
userId?: string | null;
|
|
12
|
+
userName?: string | null;
|
|
13
|
+
tenantName?: string | null;
|
|
14
|
+
clientId?: string | null;
|
|
15
|
+
correlationId?: string | null;
|
|
16
|
+
clientIpAddress?: string | null;
|
|
17
|
+
browserInfo?: string | null;
|
|
18
|
+
creationTime?: string;
|
|
19
|
+
extraProperties?: Record<string, any> | null;
|
|
20
|
+
};
|
|
21
|
+
|
|
@@ -0,0 +1,35 @@
|
|
|
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_IdentityUserDto = {
|
|
6
|
+
readonly extraProperties?: Record<string, any> | null;
|
|
7
|
+
id?: string;
|
|
8
|
+
creationTime?: string;
|
|
9
|
+
creatorId?: string | null;
|
|
10
|
+
lastModificationTime?: string | null;
|
|
11
|
+
lastModifierId?: string | null;
|
|
12
|
+
isDeleted?: boolean;
|
|
13
|
+
deleterId?: string | null;
|
|
14
|
+
deletionTime?: string | null;
|
|
15
|
+
tenantId?: string | null;
|
|
16
|
+
userName?: string | null;
|
|
17
|
+
email?: string | null;
|
|
18
|
+
name?: string | null;
|
|
19
|
+
surname?: string | null;
|
|
20
|
+
emailConfirmed?: boolean;
|
|
21
|
+
phoneNumber?: string | null;
|
|
22
|
+
phoneNumberConfirmed?: boolean;
|
|
23
|
+
supportTwoFactor?: boolean;
|
|
24
|
+
twoFactorEnabled?: boolean;
|
|
25
|
+
isActive?: boolean;
|
|
26
|
+
lockoutEnabled?: boolean;
|
|
27
|
+
isLockedOut?: boolean;
|
|
28
|
+
lockoutEnd?: string | null;
|
|
29
|
+
shouldChangePasswordOnNextLogin?: boolean;
|
|
30
|
+
concurrencyStamp?: string | null;
|
|
31
|
+
roleNames?: Array<string> | null;
|
|
32
|
+
accessFailedCount?: number;
|
|
33
|
+
lastPasswordChangeTime?: string | null;
|
|
34
|
+
};
|
|
35
|
+
|
|
@@ -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,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
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
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_MultiTenancy_FindTenantResultDto } from '../models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto';
|
|
6
|
+
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
7
|
+
import type { BaseHttpRequest } from '../core/BaseHttpRequest';
|
|
8
|
+
export class AbpTenantService {
|
|
9
|
+
constructor(public readonly httpRequest: BaseHttpRequest) {}
|
|
10
|
+
/**
|
|
11
|
+
* @param name
|
|
12
|
+
* @returns Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto Success
|
|
13
|
+
* @throws ApiError
|
|
14
|
+
*/
|
|
15
|
+
public getApiAbpMultiTenancyTenantsByName(
|
|
16
|
+
name: string,
|
|
17
|
+
): CancelablePromise<Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto> {
|
|
18
|
+
return this.httpRequest.request({
|
|
19
|
+
method: 'GET',
|
|
20
|
+
url: '/api/abp/multi-tenancy/tenants/by-name/{name}',
|
|
21
|
+
path: {
|
|
22
|
+
'name': name,
|
|
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
|
+
/**
|
|
35
|
+
* @param id
|
|
36
|
+
* @returns Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto Success
|
|
37
|
+
* @throws ApiError
|
|
38
|
+
*/
|
|
39
|
+
public getApiAbpMultiTenancyTenantsById(
|
|
40
|
+
id: string,
|
|
41
|
+
): CancelablePromise<Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto> {
|
|
42
|
+
return this.httpRequest.request({
|
|
43
|
+
method: 'GET',
|
|
44
|
+
url: '/api/abp/multi-tenancy/tenants/by-id/{id}',
|
|
45
|
+
path: {
|
|
46
|
+
'id': id,
|
|
47
|
+
},
|
|
48
|
+
errors: {
|
|
49
|
+
400: `Bad Request`,
|
|
50
|
+
401: `Unauthorized`,
|
|
51
|
+
403: `Forbidden`,
|
|
52
|
+
404: `Not Found`,
|
|
53
|
+
500: `Server Error`,
|
|
54
|
+
501: `Server Error`,
|
|
55
|
+
},
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_Account_ExternalProviders_ExternalProviderDto } from '../models/Volo_Abp_Account_ExternalProviders_ExternalProviderDto';
|
|
6
|
+
import type { Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto } from '../models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto';
|
|
7
|
+
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
8
|
+
import type { BaseHttpRequest } from '../core/BaseHttpRequest';
|
|
9
|
+
export class AccountExternalProviderService {
|
|
10
|
+
constructor(public readonly httpRequest: BaseHttpRequest) {}
|
|
11
|
+
/**
|
|
12
|
+
* @returns Volo_Abp_Account_ExternalProviders_ExternalProviderDto Success
|
|
13
|
+
* @throws ApiError
|
|
14
|
+
*/
|
|
15
|
+
public getApiAccountExternalProvider(): CancelablePromise<Volo_Abp_Account_ExternalProviders_ExternalProviderDto> {
|
|
16
|
+
return this.httpRequest.request({
|
|
17
|
+
method: 'GET',
|
|
18
|
+
url: '/api/account/external-provider',
|
|
19
|
+
errors: {
|
|
20
|
+
400: `Bad Request`,
|
|
21
|
+
401: `Unauthorized`,
|
|
22
|
+
403: `Forbidden`,
|
|
23
|
+
404: `Not Found`,
|
|
24
|
+
500: `Server Error`,
|
|
25
|
+
501: `Server Error`,
|
|
26
|
+
},
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* @param tenantId
|
|
31
|
+
* @param name
|
|
32
|
+
* @returns Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto Success
|
|
33
|
+
* @throws ApiError
|
|
34
|
+
*/
|
|
35
|
+
public getApiAccountExternalProviderByName(
|
|
36
|
+
tenantId?: string,
|
|
37
|
+
name?: string,
|
|
38
|
+
): CancelablePromise<Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto> {
|
|
39
|
+
return this.httpRequest.request({
|
|
40
|
+
method: 'GET',
|
|
41
|
+
url: '/api/account/external-provider/by-name',
|
|
42
|
+
query: {
|
|
43
|
+
'TenantId': tenantId,
|
|
44
|
+
'Name': name,
|
|
45
|
+
},
|
|
46
|
+
errors: {
|
|
47
|
+
400: `Bad Request`,
|
|
48
|
+
401: `Unauthorized`,
|
|
49
|
+
403: `Forbidden`,
|
|
50
|
+
404: `Not Found`,
|
|
51
|
+
500: `Server Error`,
|
|
52
|
+
501: `Server Error`,
|
|
53
|
+
},
|
|
54
|
+
});
|
|
55
|
+
}
|
|
56
|
+
}
|