@ayasofyazilim/saas 0.0.3 → 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/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 +118 -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/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/ProjectServiceClient.ts +6 -0
- package/ProjectService/index.ts +75 -66
- 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 +11 -6
|
@@ -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_Identity_ExternalLoginProviderDto = {
|
|
6
|
+
name?: string | null;
|
|
7
|
+
canObtainUserInfoWithoutPassword?: boolean;
|
|
8
|
+
};
|
|
9
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
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_IdentityLdapSettingsDto = {
|
|
6
|
+
enableLdapLogin?: boolean;
|
|
7
|
+
ldaps?: boolean;
|
|
8
|
+
ldapServerHost?: string | null;
|
|
9
|
+
ldapServerPort?: string | null;
|
|
10
|
+
ldapBaseDc?: string | null;
|
|
11
|
+
ldapDomain?: string | null;
|
|
12
|
+
ldapUserName?: string | null;
|
|
13
|
+
ldapPassword?: string | null;
|
|
14
|
+
};
|
|
15
|
+
|
|
@@ -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_IdentityLockoutSettingsDto = {
|
|
6
|
+
allowedForNewUsers?: boolean;
|
|
7
|
+
lockoutDuration?: number;
|
|
8
|
+
maxFailedAccessAttempts?: number;
|
|
9
|
+
};
|
|
10
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
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_IdentityOAuthSettingsDto = {
|
|
6
|
+
enableOAuthLogin?: boolean;
|
|
7
|
+
clientId: string;
|
|
8
|
+
clientSecret?: string | null;
|
|
9
|
+
authority: string;
|
|
10
|
+
scope?: string | null;
|
|
11
|
+
requireHttpsMetadata?: boolean;
|
|
12
|
+
validateEndpoints?: boolean;
|
|
13
|
+
validateIssuerName?: boolean;
|
|
14
|
+
};
|
|
15
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
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_IdentityPasswordSettingsDto = {
|
|
6
|
+
requiredLength?: number;
|
|
7
|
+
requiredUniqueChars?: number;
|
|
8
|
+
requireNonAlphanumeric?: boolean;
|
|
9
|
+
requireLowercase?: boolean;
|
|
10
|
+
requireUppercase?: boolean;
|
|
11
|
+
requireDigit?: boolean;
|
|
12
|
+
forceUsersToPeriodicallyChangePassword?: boolean;
|
|
13
|
+
passwordChangePeriodDays?: number;
|
|
14
|
+
};
|
|
15
|
+
|
|
@@ -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_IdentityRoleClaimDto = {
|
|
6
|
+
roleId?: string;
|
|
7
|
+
claimType?: string | null;
|
|
8
|
+
claimValue?: 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
|
+
export type Volo_Abp_Identity_IdentityRoleCreateDto = {
|
|
6
|
+
readonly extraProperties?: Record<string, any> | null;
|
|
7
|
+
name: string;
|
|
8
|
+
isDefault?: boolean;
|
|
9
|
+
isPublic?: boolean;
|
|
10
|
+
};
|
|
11
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
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_IdentityRoleDto = {
|
|
6
|
+
readonly extraProperties?: Record<string, any> | null;
|
|
7
|
+
id?: string;
|
|
8
|
+
name?: string | null;
|
|
9
|
+
isDefault?: boolean;
|
|
10
|
+
isStatic?: boolean;
|
|
11
|
+
isPublic?: boolean;
|
|
12
|
+
userCount?: number;
|
|
13
|
+
concurrencyStamp?: string | null;
|
|
14
|
+
};
|
|
15
|
+
|
|
@@ -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_IdentityRoleUpdateDto = {
|
|
6
|
+
readonly extraProperties?: Record<string, any> | null;
|
|
7
|
+
name: string;
|
|
8
|
+
isDefault?: boolean;
|
|
9
|
+
isPublic?: boolean;
|
|
10
|
+
concurrencyStamp?: string | null;
|
|
11
|
+
};
|
|
12
|
+
|
|
@@ -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,15 @@
|
|
|
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_IdentityLockoutSettingsDto } from './Volo_Abp_Identity_IdentityLockoutSettingsDto';
|
|
6
|
+
import type { Volo_Abp_Identity_IdentityPasswordSettingsDto } from './Volo_Abp_Identity_IdentityPasswordSettingsDto';
|
|
7
|
+
import type { Volo_Abp_Identity_IdentitySignInSettingsDto } from './Volo_Abp_Identity_IdentitySignInSettingsDto';
|
|
8
|
+
import type { Volo_Abp_Identity_IdentityUserSettingsDto } from './Volo_Abp_Identity_IdentityUserSettingsDto';
|
|
9
|
+
export type Volo_Abp_Identity_IdentitySettingsDto = {
|
|
10
|
+
password?: Volo_Abp_Identity_IdentityPasswordSettingsDto;
|
|
11
|
+
lockout?: Volo_Abp_Identity_IdentityLockoutSettingsDto;
|
|
12
|
+
signIn?: Volo_Abp_Identity_IdentitySignInSettingsDto;
|
|
13
|
+
user?: Volo_Abp_Identity_IdentityUserSettingsDto;
|
|
14
|
+
};
|
|
15
|
+
|
|
@@ -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_IdentitySignInSettingsDto = {
|
|
6
|
+
requireConfirmedEmail?: boolean;
|
|
7
|
+
enablePhoneNumberConfirmation?: boolean;
|
|
8
|
+
requireConfirmedPhoneNumber?: boolean;
|
|
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_Identity_IdentityUserClaimDto = {
|
|
6
|
+
userId?: string;
|
|
7
|
+
claimType?: string | null;
|
|
8
|
+
claimValue?: string | null;
|
|
9
|
+
};
|
|
10
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
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_IdentityUserCreateDto = {
|
|
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
|
+
password: string;
|
|
18
|
+
sendConfirmationEmail?: boolean;
|
|
19
|
+
};
|
|
20
|
+
|
|
@@ -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,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_Identity_IdentityUserSettingsDto = {
|
|
6
|
+
isUserNameUpdateEnabled?: boolean;
|
|
7
|
+
isEmailUpdateEnabled?: boolean;
|
|
8
|
+
};
|
|
9
|
+
|
|
@@ -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
|
+
|