mirror of https://github.com/abpframework/abp.git
167 changed files with 17199 additions and 1233 deletions
@ -0,0 +1,3 @@ |
|||
# Angular UI: Theme Configurations |
|||
|
|||
> This document is in draft version. |
|||
@ -1,11 +1,19 @@ |
|||
{ |
|||
"name": "Volo.Abp.Account.Application.Contracts", |
|||
"hash": "63eee204db33a361b137b2cff508e53f", |
|||
"hash": "69e95bc0327222d63521d4a5eebc0f08", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Abp.Account", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Identity.Application.Contracts", |
|||
"namespace": "Volo.Abp.Identity", |
|||
"name": "AbpIdentityApplicationContractsModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "AbpAccountApplicationContractsModule" |
|||
"name": "AbpAccountApplicationContractsModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,29 +1,248 @@ |
|||
{ |
|||
"name": "Volo.Abp.Account.Application", |
|||
"hash": "9607ce81498fab564ea4a3681c15f72d", |
|||
"hash": "c95864b3ff1b05d0dd660125cccea539", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Abp.Account", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Account.Application.Contracts", |
|||
"namespace": "Volo.Abp.Account", |
|||
"name": "AbpAccountApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Identity.Application", |
|||
"namespace": "Volo.Abp.Identity", |
|||
"name": "AbpIdentityApplicationModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.UI.Navigation", |
|||
"namespace": "Volo.Abp.UI.Navigation", |
|||
"name": "AbpUiNavigationModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Emailing", |
|||
"namespace": "Volo.Abp.Emailing", |
|||
"name": "AbpEmailingModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "AbpAccountApplicationModule" |
|||
"name": "AbpAccountApplicationModule", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Abp.Account", |
|||
"summary": null, |
|||
"baseClass": { |
|||
"name": "ApplicationService", |
|||
"namespace": "Volo.Abp.Application.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
"Volo.Abp.Account.IAccountAppService" |
|||
{ |
|||
"name": "IApplicationService", |
|||
"namespace": "Volo.Abp.Application.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IRemoteService", |
|||
"namespace": "Volo.Abp", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IAvoidDuplicateCrossCuttingConcerns", |
|||
"namespace": "Volo.Abp.Aspects", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IValidationEnabled", |
|||
"namespace": "Volo.Abp.Validation", |
|||
"declaringAssemblyName": "Volo.Abp.Validation" |
|||
}, |
|||
{ |
|||
"name": "IUnitOfWorkEnabled", |
|||
"namespace": "Volo.Abp.Uow", |
|||
"declaringAssemblyName": "Volo.Abp.Uow" |
|||
}, |
|||
{ |
|||
"name": "IAuditingEnabled", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IGlobalFeatureCheckingEnabled", |
|||
"namespace": "Volo.Abp.GlobalFeatures", |
|||
"declaringAssemblyName": "Volo.Abp.GlobalFeatures" |
|||
}, |
|||
{ |
|||
"name": "ITransientDependency", |
|||
"namespace": "Volo.Abp.DependencyInjection", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IAccountAppService", |
|||
"namespace": "Volo.Abp.Account", |
|||
"declaringAssemblyName": "Volo.Abp.Account.Application.Contracts" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "IdentityUserDto", |
|||
"isAsync": true, |
|||
"name": "RegisterAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "RegisterDto", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": true, |
|||
"name": "SendPasswordResetCodeAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "SendPasswordResetCodeDto", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": true, |
|||
"name": "ResetPasswordAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "ResetPasswordDto", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"contentType": "applicationService", |
|||
"name": "AccountAppService" |
|||
"name": "AccountAppService", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Abp.Account", |
|||
"summary": null, |
|||
"baseClass": { |
|||
"name": "IdentityAppServiceBase", |
|||
"namespace": "Volo.Abp.Identity", |
|||
"declaringAssemblyName": "Volo.Abp.Identity.Application" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
"Volo.Abp.Account.IProfileAppService" |
|||
{ |
|||
"name": "IApplicationService", |
|||
"namespace": "Volo.Abp.Application.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IRemoteService", |
|||
"namespace": "Volo.Abp", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IAvoidDuplicateCrossCuttingConcerns", |
|||
"namespace": "Volo.Abp.Aspects", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IValidationEnabled", |
|||
"namespace": "Volo.Abp.Validation", |
|||
"declaringAssemblyName": "Volo.Abp.Validation" |
|||
}, |
|||
{ |
|||
"name": "IUnitOfWorkEnabled", |
|||
"namespace": "Volo.Abp.Uow", |
|||
"declaringAssemblyName": "Volo.Abp.Uow" |
|||
}, |
|||
{ |
|||
"name": "IAuditingEnabled", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IGlobalFeatureCheckingEnabled", |
|||
"namespace": "Volo.Abp.GlobalFeatures", |
|||
"declaringAssemblyName": "Volo.Abp.GlobalFeatures" |
|||
}, |
|||
{ |
|||
"name": "ITransientDependency", |
|||
"namespace": "Volo.Abp.DependencyInjection", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IProfileAppService", |
|||
"namespace": "Volo.Abp.Account", |
|||
"declaringAssemblyName": "Volo.Abp.Account.Application.Contracts" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "ProfileDto", |
|||
"isAsync": true, |
|||
"name": "GetAsync", |
|||
"summary": null, |
|||
"parameters": [] |
|||
}, |
|||
{ |
|||
"returnType": "ProfileDto", |
|||
"isAsync": true, |
|||
"name": "UpdateAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "UpdateProfileDto", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": true, |
|||
"name": "ChangePasswordAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "ChangePasswordInput", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"contentType": "applicationService", |
|||
"name": "ProfileAppService" |
|||
"name": "ProfileAppService", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"defaultValue": "true", |
|||
"displayName": "Is self-registration enabled", |
|||
"description": "Whether a user can register the account by him or herself.", |
|||
"isVisibleToClient": true, |
|||
"isInherited": true, |
|||
"isEncrypted": false, |
|||
"contentType": "setting", |
|||
"name": "Abp.Account.IsSelfRegistrationEnabled", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"defaultValue": "true", |
|||
"displayName": "Authenticate with a local account", |
|||
"description": "Indicates if the server will allow users to authenticate with a local account.", |
|||
"isVisibleToClient": true, |
|||
"isInherited": true, |
|||
"isEncrypted": false, |
|||
"contentType": "setting", |
|||
"name": "Abp.Account.EnableLocalLogin", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,24 @@ |
|||
{ |
|||
"name": "Volo.Abp.Account.HttpApi.Client", |
|||
"hash": "62165afd5965b8041a9ac1f1356ad2e8", |
|||
"hash": "f8b3c1d3f7ef4b4070b10d1adbf07697", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Abp.Account", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Account.Application.Contracts", |
|||
"namespace": "Volo.Abp.Account", |
|||
"name": "AbpAccountApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Http.Client", |
|||
"namespace": "Volo.Abp.Http.Client", |
|||
"name": "AbpHttpClientModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "AbpAccountHttpApiClientModule" |
|||
"name": "AbpAccountHttpApiClientModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,29 @@ |
|||
{ |
|||
"name": "Volo.Abp.Account.HttpApi", |
|||
"hash": "c789b459a83b26349ca6f0fcab82a244", |
|||
"hash": "4bbe4cd74f3e0b75d32217e6be0abec8", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Abp.Account", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Account.Application.Contracts", |
|||
"namespace": "Volo.Abp.Account", |
|||
"name": "AbpAccountApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Identity.HttpApi", |
|||
"namespace": "Volo.Abp.Identity", |
|||
"name": "AbpIdentityHttpApiModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc", |
|||
"name": "AbpAspNetCoreMvcModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "AbpAccountHttpApiModule" |
|||
"name": "AbpAccountHttpApiModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -0,0 +1,24 @@ |
|||
{ |
|||
"name": "Volo.Abp.Account.Web.IdentityServer", |
|||
"hash": "03edebc655e0b3deed4a6f61b2975c8e", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Abp.Account.Web", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Account.Web", |
|||
"namespace": "Volo.Abp.Account.Web", |
|||
"name": "AbpAccountWebModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.IdentityServer.Domain", |
|||
"namespace": "Volo.Abp.IdentityServer", |
|||
"name": "AbpIdentityServerDomainModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "AbpAccountWebIdentityServerModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -0,0 +1,24 @@ |
|||
{ |
|||
"name": "Volo.Abp.Account.Web.OpenIddict", |
|||
"hash": "cb0116e7d5287266425d337b9e29d5cf", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Abp.Account.Web", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Account.Web", |
|||
"namespace": "Volo.Abp.Account.Web", |
|||
"name": "AbpAccountWebModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.OpenIddict.AspNetCore", |
|||
"namespace": "Volo.Abp.OpenIddict", |
|||
"name": "AbpOpenIddictAspNetCoreModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "AbpAccountWebOpenIddictModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,39 @@ |
|||
{ |
|||
"name": "Volo.Abp.Account.Web", |
|||
"hash": "56ee8c43448399a621216b5e54008a54", |
|||
"hash": "9a19d1170e6ea5e601e7f61686d245de", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Abp.Account.Web", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Account.Application.Contracts", |
|||
"namespace": "Volo.Abp.Account", |
|||
"name": "AbpAccountApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Identity.AspNetCore", |
|||
"namespace": "Volo.Abp.Identity.AspNetCore", |
|||
"name": "AbpIdentityAspNetCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AutoMapper", |
|||
"namespace": "Volo.Abp.AutoMapper", |
|||
"name": "AbpAutoMapperModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared", |
|||
"name": "AbpAspNetCoreMvcUiThemeSharedModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.ExceptionHandling", |
|||
"namespace": "Volo.Abp.ExceptionHandling", |
|||
"name": "AbpExceptionHandlingModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "AbpAccountWebModule" |
|||
"name": "AbpAccountWebModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,19 @@ |
|||
{ |
|||
"name": "Volo.Abp.AuditLogging.Domain.Shared", |
|||
"hash": "91305b5b9fa1cd0a8a9adc6a0e54877b", |
|||
"hash": "e6804aee981e73c0bf60780e69c001ac", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Abp.AuditLogging", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Validation", |
|||
"namespace": "Volo.Abp.Validation", |
|||
"name": "AbpValidationModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "AbpAuditLoggingDomainSharedModule" |
|||
"name": "AbpAuditLoggingDomainSharedModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,41 +1,133 @@ |
|||
{ |
|||
"name": "Volo.Abp.AuditLogging.Domain", |
|||
"hash": "df19d27b7da103de2da1826c6ba8e161", |
|||
"hash": "9acd8ed269385ff15150449590c209fe", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Abp.AuditLogging", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Auditing", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"name": "AbpAuditingModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain", |
|||
"namespace": "Volo.Abp.Domain", |
|||
"name": "AbpDddDomainModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AuditLogging.Domain.Shared", |
|||
"namespace": "Volo.Abp.AuditLogging", |
|||
"name": "AbpAuditLoggingDomainSharedModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.ExceptionHandling", |
|||
"namespace": "Volo.Abp.ExceptionHandling", |
|||
"name": "AbpExceptionHandlingModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Json", |
|||
"namespace": "Volo.Abp.Json", |
|||
"name": "AbpJsonModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "AbpAuditLoggingDomainModule" |
|||
"name": "AbpAuditLoggingDomainModule", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"baseClass": { |
|||
"name": "AggregateRoot<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
{ |
|||
"name": "IEntity", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IEntity<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IAggregateRoot<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IAggregateRoot", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IGeneratesDomainEvents", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IHasExtraProperties", |
|||
"namespace": "Volo.Abp.Data", |
|||
"declaringAssemblyName": "Volo.Abp.ObjectExtending" |
|||
}, |
|||
{ |
|||
"name": "IHasConcurrencyStamp", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Data" |
|||
}, |
|||
{ |
|||
"name": "IMultiTenant", |
|||
"namespace": "Volo.Abp.MultiTenancy", |
|||
"declaringAssemblyName": "Volo.Abp.MultiTenancy" |
|||
} |
|||
], |
|||
"methods": [], |
|||
"namespace": "Volo.Abp.AuditLogging", |
|||
"primaryKeyType": "Guid", |
|||
"summary": null, |
|||
"collectionProperties": [ |
|||
"Volo.Abp.AuditLogging.EntityChange", |
|||
"Volo.Abp.AuditLogging.AuditLogAction" |
|||
], |
|||
"navigationProperties": [], |
|||
"collectionProperties": { |
|||
"entityChanges": { |
|||
"name": "EntityChange", |
|||
"namespace": "Volo.Abp.AuditLogging", |
|||
"declaringAssemblyName": "Volo.Abp.AuditLogging.Domain" |
|||
}, |
|||
"actions": { |
|||
"name": "AuditLogAction", |
|||
"namespace": "Volo.Abp.AuditLogging", |
|||
"declaringAssemblyName": "Volo.Abp.AuditLogging.Domain" |
|||
} |
|||
}, |
|||
"navigationProperties": {}, |
|||
"contentType": "aggregateRoot", |
|||
"name": "AuditLog" |
|||
"name": "AuditLog", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Abp.AuditLogging", |
|||
"summary": null, |
|||
"entityModel": { |
|||
"entityAnalyzeModel": { |
|||
"namespace": "Volo.Abp.AuditLogging", |
|||
"primaryKeyType": "Guid", |
|||
"summary": null, |
|||
"collectionProperties": [ |
|||
"Volo.Abp.AuditLogging.EntityChange", |
|||
"Volo.Abp.AuditLogging.AuditLogAction" |
|||
], |
|||
"navigationProperties": [], |
|||
"collectionProperties": { |
|||
"entityChanges": { |
|||
"name": "EntityChange", |
|||
"namespace": "Volo.Abp.AuditLogging", |
|||
"declaringAssemblyName": "Volo.Abp.AuditLogging.Domain" |
|||
}, |
|||
"actions": { |
|||
"name": "AuditLogAction", |
|||
"namespace": "Volo.Abp.AuditLogging", |
|||
"declaringAssemblyName": "Volo.Abp.AuditLogging.Domain" |
|||
} |
|||
}, |
|||
"navigationProperties": {}, |
|||
"contentType": "entity", |
|||
"name": "AuditLog" |
|||
"name": "AuditLog", |
|||
"summary": null |
|||
}, |
|||
"contentType": "repositoryInterface", |
|||
"name": "IAuditLogRepository" |
|||
"name": "IAuditLogRepository", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -0,0 +1,29 @@ |
|||
{ |
|||
"name": "Volo.Abp.BackgroundJobs.DemoApp.HangFire", |
|||
"hash": "f48c5cb958c77d7b4cfb1e4ddda9c88c", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Abp.BackgroundJobs.DemoApp.HangFire", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.BackgroundJobs.DemoApp.Shared", |
|||
"namespace": "Volo.Abp.BackgroundJobs.DemoApp.Shared", |
|||
"name": "DemoAppSharedModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Autofac", |
|||
"namespace": "Volo.Abp.Autofac", |
|||
"name": "AbpAutofacModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.BackgroundJobs.HangFire", |
|||
"namespace": "Volo.Abp.BackgroundJobs.Hangfire", |
|||
"name": "AbpBackgroundJobsHangfireModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "DemoAppHangfireModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -0,0 +1,29 @@ |
|||
{ |
|||
"name": "Volo.Abp.BackgroundJobs.DemoApp.Quartz", |
|||
"hash": "9f7a22f6afd944505bd8381a25fee9c2", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Abp.BackgroundJobs.DemoApp.Quartz", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.BackgroundJobs.DemoApp.Shared", |
|||
"namespace": "Volo.Abp.BackgroundJobs.DemoApp.Shared", |
|||
"name": "DemoAppSharedModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Autofac", |
|||
"namespace": "Volo.Abp.Autofac", |
|||
"name": "AbpAutofacModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.BackgroundJobs.Quartz", |
|||
"namespace": "Volo.Abp.BackgroundJobs.Quartz", |
|||
"name": "AbpBackgroundJobsQuartzModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "DemoAppQuartzModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -0,0 +1,29 @@ |
|||
{ |
|||
"name": "Volo.Abp.BackgroundJobs.DemoApp.RabbitMq", |
|||
"hash": "624f866c4719ce4dd86a3ec94ca5c201", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Abp.BackgroundJobs.DemoApp.RabbitMq", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.BackgroundJobs.DemoApp.Shared", |
|||
"namespace": "Volo.Abp.BackgroundJobs.DemoApp.Shared", |
|||
"name": "DemoAppSharedModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Autofac", |
|||
"namespace": "Volo.Abp.Autofac", |
|||
"name": "AbpAutofacModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.BackgroundJobs.RabbitMQ", |
|||
"namespace": "Volo.Abp.BackgroundJobs.RabbitMQ", |
|||
"name": "AbpBackgroundJobsRabbitMqModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "DemoAppRabbitMqModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -0,0 +1,19 @@ |
|||
{ |
|||
"name": "Volo.Abp.BackgroundJobs.DemoApp.Shared", |
|||
"hash": "679eea13985b8e3027dd78c102c7c8d5", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Abp.BackgroundJobs.DemoApp.Shared", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.BackgroundJobs.Abstractions", |
|||
"namespace": "Volo.Abp.BackgroundJobs", |
|||
"name": "AbpBackgroundJobsAbstractionsModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "DemoAppSharedModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -0,0 +1,34 @@ |
|||
{ |
|||
"name": "Volo.Abp.BackgroundJobs.DemoApp", |
|||
"hash": "aa4ad89126fac95c9422f8825c746a86", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Abp.BackgroundJobs.DemoApp", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.BackgroundJobs.DemoApp.Shared", |
|||
"namespace": "Volo.Abp.BackgroundJobs.DemoApp.Shared", |
|||
"name": "DemoAppSharedModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.BackgroundJobs.EntityFrameworkCore", |
|||
"namespace": "Volo.Abp.BackgroundJobs.EntityFrameworkCore", |
|||
"name": "AbpBackgroundJobsEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Autofac", |
|||
"namespace": "Volo.Abp.Autofac", |
|||
"name": "AbpAutofacModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.EntityFrameworkCore.SqlServer", |
|||
"namespace": "Volo.Abp.EntityFrameworkCore.SqlServer", |
|||
"name": "AbpEntityFrameworkCoreSqlServerModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "DemoAppModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,13 @@ |
|||
{ |
|||
"name": "Volo.Abp.BackgroundJobs.Domain.Shared", |
|||
"hash": "7be6cb28ee9246d901e9801978a44149", |
|||
"hash": "f6e051b709b4e9430fa42dedc13b1006", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Abp.BackgroundJobs", |
|||
"dependsOnModules": [], |
|||
"contentType": "abpModule", |
|||
"name": "AbpBackgroundJobsDomainSharedModule" |
|||
"name": "AbpBackgroundJobsDomainSharedModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,35 +1,101 @@ |
|||
{ |
|||
"name": "Volo.Abp.BackgroundJobs.Domain", |
|||
"hash": "edcb98cb920b6d3805b6ff82d280b1bd", |
|||
"hash": "84cc3ad8529ec549facee6bdad6ab976", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Abp.BackgroundJobs", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.BackgroundJobs.Domain.Shared", |
|||
"namespace": "Volo.Abp.BackgroundJobs", |
|||
"name": "AbpBackgroundJobsDomainSharedModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.BackgroundJobs", |
|||
"namespace": "Volo.Abp.BackgroundJobs", |
|||
"name": "AbpBackgroundJobsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AutoMapper", |
|||
"namespace": "Volo.Abp.AutoMapper", |
|||
"name": "AbpAutoMapperModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "AbpBackgroundJobsDomainModule" |
|||
"name": "AbpBackgroundJobsDomainModule", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"baseClass": { |
|||
"name": "AggregateRoot<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
{ |
|||
"name": "IEntity", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IEntity<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IAggregateRoot<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IAggregateRoot", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IGeneratesDomainEvents", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IHasExtraProperties", |
|||
"namespace": "Volo.Abp.Data", |
|||
"declaringAssemblyName": "Volo.Abp.ObjectExtending" |
|||
}, |
|||
{ |
|||
"name": "IHasConcurrencyStamp", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Data" |
|||
}, |
|||
{ |
|||
"name": "IHasCreationTime", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
} |
|||
], |
|||
"methods": [], |
|||
"namespace": "Volo.Abp.BackgroundJobs", |
|||
"primaryKeyType": "Guid", |
|||
"summary": null, |
|||
"collectionProperties": [], |
|||
"navigationProperties": [], |
|||
"collectionProperties": {}, |
|||
"navigationProperties": {}, |
|||
"contentType": "aggregateRoot", |
|||
"name": "BackgroundJobRecord" |
|||
"name": "BackgroundJobRecord", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Abp.BackgroundJobs", |
|||
"summary": null, |
|||
"entityAnalyzeModel": { |
|||
"namespace": "Volo.Abp.BackgroundJobs", |
|||
"primaryKeyType": "Guid", |
|||
"summary": null, |
|||
"collectionProperties": [], |
|||
"navigationProperties": [], |
|||
"collectionProperties": {}, |
|||
"navigationProperties": {}, |
|||
"contentType": "entity", |
|||
"name": "BackgroundJobRecord" |
|||
"name": "BackgroundJobRecord", |
|||
"summary": null |
|||
}, |
|||
"contentType": "repositoryInterface", |
|||
"name": "IBackgroundJobRepository" |
|||
"name": "IBackgroundJobRepository", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -0,0 +1,24 @@ |
|||
{ |
|||
"name": "Volo.Abp.AspNetCore.Components.Server.BasicTheme", |
|||
"hash": "0ba738321c0dcacb3f21fc76f6a71000", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Abp.AspNetCore.Components.Server.BasicTheme", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Components.Web.BasicTheme", |
|||
"namespace": "Volo.Abp.AspNetCore.Components.Web.BasicTheme", |
|||
"name": "AbpAspNetCoreComponentsWebBasicThemeModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Components.Server.Theming", |
|||
"namespace": "Volo.Abp.AspNetCore.Components.Server.Theming", |
|||
"name": "AbpAspNetCoreComponentsServerThemingModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "AbpAspNetCoreComponentsServerBasicThemeModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -0,0 +1,19 @@ |
|||
{ |
|||
"name": "Volo.Abp.AspNetCore.Components.Web.BasicTheme", |
|||
"hash": "2f6cbfaa4aa8e809f6116711e1c96b35", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Abp.AspNetCore.Components.Web.BasicTheme", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Components.Web.Theming", |
|||
"namespace": "Volo.Abp.AspNetCore.Components.Web.Theming", |
|||
"name": "AbpAspNetCoreComponentsWebThemingModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "AbpAspNetCoreComponentsWebBasicThemeModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,24 @@ |
|||
{ |
|||
"name": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic", |
|||
"hash": "ce73ef1b1d433a5bd99fce51d9c76697", |
|||
"hash": "9cc26121565457be94f1d487d7460442", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared", |
|||
"name": "AbpAspNetCoreMvcUiThemeSharedModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy", |
|||
"name": "AbpAspNetCoreMvcUiMultiTenancyModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "AbpAspNetCoreMvcUiBasicThemeModule" |
|||
"name": "AbpAspNetCoreMvcUiBasicThemeModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -0,0 +1,24 @@ |
|||
{ |
|||
"name": "Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo", |
|||
"hash": "42884701c061b330f82ea3a0992f2d98", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic", |
|||
"name": "AbpAspNetCoreMvcUiBasicThemeModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Autofac", |
|||
"namespace": "Volo.Abp.Autofac", |
|||
"name": "AbpAutofacModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "AbpAspNetCoreMvcUiBootstrapDemoModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -0,0 +1,29 @@ |
|||
{ |
|||
"name": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo", |
|||
"hash": "4427e6d95959ef1ae898cc8f323eeb24", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic", |
|||
"name": "AbpAspNetCoreMvcUiBasicThemeModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo", |
|||
"name": "AbpAspNetCoreMvcUiThemeSharedDemoModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Autofac", |
|||
"namespace": "Volo.Abp.Autofac", |
|||
"name": "AbpAutofacModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "AbpAspNetCoreMvcUiThemeBasicDemoModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -0,0 +1,29 @@ |
|||
{ |
|||
"name": "BlobStoring.Database.Host.ConsoleApp.ConsoleApp", |
|||
"hash": "586af594c8eddeb485df1d06e051e2c3", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "BlobStoring.Database.Host.ConsoleApp.ConsoleApp", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Autofac", |
|||
"namespace": "Volo.Abp.Autofac", |
|||
"name": "AbpAutofacModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.EntityFrameworkCore.SqlServer", |
|||
"namespace": "Volo.Abp.EntityFrameworkCore.SqlServer", |
|||
"name": "AbpEntityFrameworkCoreSqlServerModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.BlobStoring.Database.EntityFrameworkCore", |
|||
"namespace": "Volo.Abp.BlobStoring.Database.EntityFrameworkCore", |
|||
"name": "BlobStoringDatabaseEntityFrameworkCoreModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "ConsoleAppConsoleAppModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,19 @@ |
|||
{ |
|||
"name": "Volo.Abp.BlobStoring.Database.Domain.Shared", |
|||
"hash": "a6127aa423bcf90505fde453d6852fd5", |
|||
"hash": "ca71bff6138a518c84899353b3d88f2e", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Abp.BlobStoring.Database", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Validation", |
|||
"namespace": "Volo.Abp.Validation", |
|||
"name": "AbpValidationModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "BlobStoringDatabaseDomainSharedModule" |
|||
"name": "BlobStoringDatabaseDomainSharedModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,59 +1,187 @@ |
|||
{ |
|||
"name": "Volo.Abp.BlobStoring.Database.Domain", |
|||
"hash": "35614e1fa8f4e0214b7f456228ba7565", |
|||
"hash": "4c72530134504ee1792b7e24248dc384", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Abp.BlobStoring.Database", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain", |
|||
"namespace": "Volo.Abp.Domain", |
|||
"name": "AbpDddDomainModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.BlobStoring", |
|||
"namespace": "Volo.Abp.BlobStoring", |
|||
"name": "AbpBlobStoringModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.BlobStoring.Database.Domain.Shared", |
|||
"namespace": "Volo.Abp.BlobStoring.Database", |
|||
"name": "BlobStoringDatabaseDomainSharedModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "BlobStoringDatabaseDomainModule" |
|||
"name": "BlobStoringDatabaseDomainModule", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"baseClass": { |
|||
"name": "AggregateRoot<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
{ |
|||
"name": "IEntity", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IEntity<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IAggregateRoot<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IAggregateRoot", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IGeneratesDomainEvents", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IHasExtraProperties", |
|||
"namespace": "Volo.Abp.Data", |
|||
"declaringAssemblyName": "Volo.Abp.ObjectExtending" |
|||
}, |
|||
{ |
|||
"name": "IHasConcurrencyStamp", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Data" |
|||
}, |
|||
{ |
|||
"name": "IMultiTenant", |
|||
"namespace": "Volo.Abp.MultiTenancy", |
|||
"declaringAssemblyName": "Volo.Abp.MultiTenancy" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": false, |
|||
"name": "SetContent", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Byte[]", |
|||
"name": "content", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"namespace": "Volo.Abp.BlobStoring.Database", |
|||
"primaryKeyType": "Guid", |
|||
"summary": null, |
|||
"collectionProperties": [], |
|||
"navigationProperties": [], |
|||
"collectionProperties": {}, |
|||
"navigationProperties": {}, |
|||
"contentType": "aggregateRoot", |
|||
"name": "DatabaseBlob" |
|||
"name": "DatabaseBlob", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"baseClass": { |
|||
"name": "AggregateRoot<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
{ |
|||
"name": "IEntity", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IEntity<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IAggregateRoot<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IAggregateRoot", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IGeneratesDomainEvents", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IHasExtraProperties", |
|||
"namespace": "Volo.Abp.Data", |
|||
"declaringAssemblyName": "Volo.Abp.ObjectExtending" |
|||
}, |
|||
{ |
|||
"name": "IHasConcurrencyStamp", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Data" |
|||
}, |
|||
{ |
|||
"name": "IMultiTenant", |
|||
"namespace": "Volo.Abp.MultiTenancy", |
|||
"declaringAssemblyName": "Volo.Abp.MultiTenancy" |
|||
} |
|||
], |
|||
"methods": [], |
|||
"namespace": "Volo.Abp.BlobStoring.Database", |
|||
"primaryKeyType": "Guid", |
|||
"summary": null, |
|||
"collectionProperties": [], |
|||
"navigationProperties": [], |
|||
"collectionProperties": {}, |
|||
"navigationProperties": {}, |
|||
"contentType": "aggregateRoot", |
|||
"name": "DatabaseBlobContainer" |
|||
"name": "DatabaseBlobContainer", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Abp.BlobStoring.Database", |
|||
"summary": null, |
|||
"entityAnalyzeModel": { |
|||
"namespace": "Volo.Abp.BlobStoring.Database", |
|||
"primaryKeyType": "Guid", |
|||
"summary": null, |
|||
"collectionProperties": [], |
|||
"navigationProperties": [], |
|||
"collectionProperties": {}, |
|||
"navigationProperties": {}, |
|||
"contentType": "entity", |
|||
"name": "DatabaseBlobContainer" |
|||
"name": "DatabaseBlobContainer", |
|||
"summary": null |
|||
}, |
|||
"contentType": "repositoryInterface", |
|||
"name": "IDatabaseBlobContainerRepository" |
|||
"name": "IDatabaseBlobContainerRepository", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Abp.BlobStoring.Database", |
|||
"summary": null, |
|||
"entityAnalyzeModel": { |
|||
"namespace": "Volo.Abp.BlobStoring.Database", |
|||
"primaryKeyType": "Guid", |
|||
"summary": null, |
|||
"collectionProperties": [], |
|||
"navigationProperties": [], |
|||
"collectionProperties": {}, |
|||
"navigationProperties": {}, |
|||
"contentType": "entity", |
|||
"name": "DatabaseBlob" |
|||
"name": "DatabaseBlob", |
|||
"summary": null |
|||
}, |
|||
"contentType": "repositoryInterface", |
|||
"name": "IDatabaseBlobRepository" |
|||
"name": "IDatabaseBlobRepository", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,18 +1,52 @@ |
|||
{ |
|||
"name": "Volo.BloggingTestApp.EntityFrameworkCore", |
|||
"hash": "9bca59fa99494d82517715624e8b4974", |
|||
"hash": "b8440f4f347f0d989699daf1665efcc3", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.BloggingTestApp.EntityFrameworkCore", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Blogging.EntityFrameworkCore", |
|||
"namespace": "Volo.Blogging.EntityFrameworkCore", |
|||
"name": "BloggingEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Identity.EntityFrameworkCore", |
|||
"namespace": "Volo.Abp.Identity.EntityFrameworkCore", |
|||
"name": "AbpIdentityEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.PermissionManagement.EntityFrameworkCore", |
|||
"namespace": "Volo.Abp.PermissionManagement.EntityFrameworkCore", |
|||
"name": "AbpPermissionManagementEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.SettingManagement.EntityFrameworkCore", |
|||
"namespace": "Volo.Abp.SettingManagement.EntityFrameworkCore", |
|||
"name": "AbpSettingManagementEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.EntityFrameworkCore.SqlServer", |
|||
"namespace": "Volo.Abp.EntityFrameworkCore.SqlServer", |
|||
"name": "AbpEntityFrameworkCoreSqlServerModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.BlobStoring.Database.EntityFrameworkCore", |
|||
"namespace": "Volo.Abp.BlobStoring.Database.EntityFrameworkCore", |
|||
"name": "BlobStoringDatabaseEntityFrameworkCoreModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "BloggingTestAppEntityFrameworkCoreModule" |
|||
"name": "BloggingTestAppEntityFrameworkCoreModule", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.BloggingTestApp.EntityFrameworkCore", |
|||
"connectionStringName": null, |
|||
"databaseTables": [], |
|||
"contentType": "efCoreDbContext", |
|||
"name": "BloggingTestAppDbContext" |
|||
"name": "BloggingTestAppDbContext", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,39 @@ |
|||
{ |
|||
"name": "Volo.BloggingTestApp.MongoDB", |
|||
"hash": "fad6ecadd947f85cb1e3da6b87211432", |
|||
"hash": "40b781b60ccf37d71720ae4657e1ac55", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.BloggingTestApp.MongoDB", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Identity.MongoDB", |
|||
"namespace": "Volo.Abp.Identity.MongoDB", |
|||
"name": "AbpIdentityMongoDbModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Blogging.MongoDB", |
|||
"namespace": "Volo.Blogging.MongoDB", |
|||
"name": "BloggingMongoDbModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.SettingManagement.MongoDB", |
|||
"namespace": "Volo.Abp.SettingManagement.MongoDB", |
|||
"name": "AbpSettingManagementMongoDbModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.PermissionManagement.MongoDB", |
|||
"namespace": "Volo.Abp.PermissionManagement.MongoDB", |
|||
"name": "AbpPermissionManagementMongoDbModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.BlobStoring.Database.MongoDB", |
|||
"namespace": "Volo.Abp.BlobStoring.Database.MongoDB", |
|||
"name": "BlobStoringDatabaseMongoDbModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "BloggingTestAppMongoDbModule" |
|||
"name": "BloggingTestAppMongoDbModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,19 @@ |
|||
{ |
|||
"name": "Volo.Blogging.Admin.Application.Contracts", |
|||
"hash": "be484343bc0b862114e22ee45c9027e3", |
|||
"hash": "60b70929e0d5bf7e78c1ab98cf925ebf", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Blogging.Admin", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Blogging.Application.Contracts.Shared", |
|||
"namespace": "Volo.Blogging", |
|||
"name": "BloggingApplicationContractsSharedModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "BloggingAdminApplicationContractsModule" |
|||
"name": "BloggingAdminApplicationContractsModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,20 +1,176 @@ |
|||
{ |
|||
"name": "Volo.Blogging.Admin.Application", |
|||
"hash": "da2cac72c4199b60197f4b57b5e7c9e6", |
|||
"hash": "c0819fce8e54544371f8cb47c9fd00a7", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Blogging.Admin", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Blogging.Domain", |
|||
"namespace": "Volo.Blogging", |
|||
"name": "BloggingDomainModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Blogging.Admin.Application.Contracts", |
|||
"namespace": "Volo.Blogging.Admin", |
|||
"name": "BloggingAdminApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Caching", |
|||
"namespace": "Volo.Abp.Caching", |
|||
"name": "AbpCachingModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AutoMapper", |
|||
"namespace": "Volo.Abp.AutoMapper", |
|||
"name": "AbpAutoMapperModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application", |
|||
"namespace": "Volo.Abp.Application", |
|||
"name": "AbpDddApplicationModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "BloggingAdminApplicationModule" |
|||
"name": "BloggingAdminApplicationModule", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Blogging.Admin.Blogs", |
|||
"summary": null, |
|||
"baseClass": { |
|||
"name": "BloggingAdminAppServiceBase", |
|||
"namespace": "Volo.Blogging.Admin", |
|||
"declaringAssemblyName": "Volo.Blogging.Admin.Application" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
"Volo.Blogging.Admin.Blogs.IBlogManagementAppService" |
|||
{ |
|||
"name": "IApplicationService", |
|||
"namespace": "Volo.Abp.Application.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IRemoteService", |
|||
"namespace": "Volo.Abp", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IAvoidDuplicateCrossCuttingConcerns", |
|||
"namespace": "Volo.Abp.Aspects", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IValidationEnabled", |
|||
"namespace": "Volo.Abp.Validation", |
|||
"declaringAssemblyName": "Volo.Abp.Validation" |
|||
}, |
|||
{ |
|||
"name": "IUnitOfWorkEnabled", |
|||
"namespace": "Volo.Abp.Uow", |
|||
"declaringAssemblyName": "Volo.Abp.Uow" |
|||
}, |
|||
{ |
|||
"name": "IAuditingEnabled", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IGlobalFeatureCheckingEnabled", |
|||
"namespace": "Volo.Abp.GlobalFeatures", |
|||
"declaringAssemblyName": "Volo.Abp.GlobalFeatures" |
|||
}, |
|||
{ |
|||
"name": "ITransientDependency", |
|||
"namespace": "Volo.Abp.DependencyInjection", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IBlogManagementAppService", |
|||
"namespace": "Volo.Blogging.Admin.Blogs", |
|||
"declaringAssemblyName": "Volo.Blogging.Admin.Application.Contracts" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "ListResultDto<BlogDto>", |
|||
"isAsync": true, |
|||
"name": "GetListAsync", |
|||
"summary": null, |
|||
"parameters": [] |
|||
}, |
|||
{ |
|||
"returnType": "BlogDto", |
|||
"isAsync": true, |
|||
"name": "GetAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Guid", |
|||
"name": "id", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "BlogDto", |
|||
"isAsync": true, |
|||
"name": "CreateAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "CreateBlogDto", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "BlogDto", |
|||
"isAsync": true, |
|||
"name": "UpdateAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Guid", |
|||
"name": "id", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "UpdateBlogDto", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": true, |
|||
"name": "DeleteAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Guid", |
|||
"name": "id", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": true, |
|||
"name": "ClearCacheAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Guid", |
|||
"name": "id", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"contentType": "applicationService", |
|||
"name": "BlogManagementAppService" |
|||
"name": "BlogManagementAppService", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,24 @@ |
|||
{ |
|||
"name": "Volo.Blogging.Admin.HttpApi.Client", |
|||
"hash": "a721bcce141abe86ecb9c0d1c29350c1", |
|||
"hash": "a085abc09fb31764111814ce96f57562", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Blogging.Admin", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Blogging.Admin.Application.Contracts", |
|||
"namespace": "Volo.Blogging.Admin", |
|||
"name": "BloggingAdminApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Http.Client", |
|||
"namespace": "Volo.Abp.Http.Client", |
|||
"name": "AbpHttpClientModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "BloggingAdminHttpApiClientModule" |
|||
"name": "BloggingAdminHttpApiClientModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,24 @@ |
|||
{ |
|||
"name": "Volo.Blogging.Admin.HttpApi", |
|||
"hash": "5a7f1b44c7977fc9ae74a04688a1f012", |
|||
"hash": "8080bcd6f5c12bdbbacc0c6ebde3c34e", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Blogging.Admin", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Blogging.Admin.Application.Contracts", |
|||
"namespace": "Volo.Blogging.Admin", |
|||
"name": "BloggingAdminApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc", |
|||
"name": "AbpAspNetCoreMvcModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "BloggingAdminHttpApiModule" |
|||
"name": "BloggingAdminHttpApiModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,34 @@ |
|||
{ |
|||
"name": "Volo.Blogging.Admin.Web", |
|||
"hash": "038f0c3d57f5f4bc8e0e773b1f0c3b3a", |
|||
"hash": "ebfd5c0a7e9355f6370462e555e00de9", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Blogging.Admin", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Blogging.Admin.Application.Contracts", |
|||
"namespace": "Volo.Blogging.Admin", |
|||
"name": "BloggingAdminApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc.UI.Bootstrap", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc.UI.Bootstrap", |
|||
"name": "AbpAspNetCoreMvcUiBootstrapModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc.UI.Bundling", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc.UI.Bundling", |
|||
"name": "AbpAspNetCoreMvcUiBundlingModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AutoMapper", |
|||
"namespace": "Volo.Abp.AutoMapper", |
|||
"name": "AbpAutoMapperModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "BloggingAdminWebModule" |
|||
"name": "BloggingAdminWebModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -0,0 +1,155 @@ |
|||
{ |
|||
"name": "Volo.Blogging.Application.Contracts.Shared", |
|||
"hash": "8a92aa4403f11b705e31ad7591402c56", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Blogging", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Blogging.Domain.Shared", |
|||
"namespace": "Volo.Blogging", |
|||
"name": "BloggingDomainSharedModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application.Contracts", |
|||
"namespace": "Volo.Abp.Application", |
|||
"name": "AbpDddApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Authorization.Abstractions", |
|||
"namespace": "Volo.Abp.Authorization", |
|||
"name": "AbpAuthorizationAbstractionsModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "BloggingApplicationContractsSharedModule", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Blogs", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "Blogging.Blog", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Management", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "Blogging.Blog.Management", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Edit", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "Blogging.Blog.Update", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Delete", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "Blogging.Blog.Delete", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Create", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "Blogging.Blog.Create", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Clear cache", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "Blogging.Blog.ClearCache", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Posts", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "Blogging.Post", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Edit", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "Blogging.Post.Update", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Delete", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "Blogging.Post.Delete", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Create", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "Blogging.Post.Create", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Tags", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "Blogging.Tag", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Edit", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "Blogging.Tag.Update", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Delete", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "Blogging.Tag.Delete", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Create", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "Blogging.Tag.Create", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Comments", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "Blogging.Comment", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Edit", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "Blogging.Comment.Update", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Delete", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "Blogging.Comment.Delete", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Create", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "Blogging.Comment.Create", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,19 @@ |
|||
{ |
|||
"name": "Volo.Blogging.Application.Contracts", |
|||
"hash": "f2feafeeb5d85cc3f76512948097381d", |
|||
"hash": "721fd200ca096b6ab65cabb2d0cbacb5", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Blogging", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Blogging.Application.Contracts.Shared", |
|||
"namespace": "Volo.Blogging", |
|||
"name": "BloggingApplicationContractsSharedModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "BloggingApplicationContractsModule" |
|||
"name": "BloggingApplicationContractsModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,56 +1,592 @@ |
|||
{ |
|||
"name": "Volo.Blogging.Application", |
|||
"hash": "47a4bc61ba0c33ebe3b888158ee679f6", |
|||
"hash": "8514bb852f12b47891c28619ff32dce0", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Blogging", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Blogging.Domain", |
|||
"namespace": "Volo.Blogging", |
|||
"name": "BloggingDomainModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Blogging.Application.Contracts", |
|||
"namespace": "Volo.Blogging", |
|||
"name": "BloggingApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Caching", |
|||
"namespace": "Volo.Abp.Caching", |
|||
"name": "AbpCachingModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AutoMapper", |
|||
"namespace": "Volo.Abp.AutoMapper", |
|||
"name": "AbpAutoMapperModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.BlobStoring", |
|||
"namespace": "Volo.Abp.BlobStoring", |
|||
"name": "AbpBlobStoringModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application", |
|||
"namespace": "Volo.Abp.Application", |
|||
"name": "AbpDddApplicationModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "BloggingApplicationModule" |
|||
"name": "BloggingApplicationModule", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Blogging.Tagging", |
|||
"summary": null, |
|||
"baseClass": { |
|||
"name": "BloggingAppServiceBase", |
|||
"namespace": "Volo.Blogging", |
|||
"declaringAssemblyName": "Volo.Blogging.Application" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
"Volo.Blogging.Tagging.ITagAppService" |
|||
{ |
|||
"name": "IApplicationService", |
|||
"namespace": "Volo.Abp.Application.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IRemoteService", |
|||
"namespace": "Volo.Abp", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IAvoidDuplicateCrossCuttingConcerns", |
|||
"namespace": "Volo.Abp.Aspects", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IValidationEnabled", |
|||
"namespace": "Volo.Abp.Validation", |
|||
"declaringAssemblyName": "Volo.Abp.Validation" |
|||
}, |
|||
{ |
|||
"name": "IUnitOfWorkEnabled", |
|||
"namespace": "Volo.Abp.Uow", |
|||
"declaringAssemblyName": "Volo.Abp.Uow" |
|||
}, |
|||
{ |
|||
"name": "IAuditingEnabled", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IGlobalFeatureCheckingEnabled", |
|||
"namespace": "Volo.Abp.GlobalFeatures", |
|||
"declaringAssemblyName": "Volo.Abp.GlobalFeatures" |
|||
}, |
|||
{ |
|||
"name": "ITransientDependency", |
|||
"namespace": "Volo.Abp.DependencyInjection", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "ITagAppService", |
|||
"namespace": "Volo.Blogging.Tagging", |
|||
"declaringAssemblyName": "Volo.Blogging.Application.Contracts" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "List<TagDto>", |
|||
"isAsync": true, |
|||
"name": "GetPopularTagsAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Guid", |
|||
"name": "blogId", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "GetPopularTagsInput", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"contentType": "applicationService", |
|||
"name": "TagAppService" |
|||
"name": "TagAppService", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Blogging.Posts", |
|||
"summary": null, |
|||
"baseClass": { |
|||
"name": "BloggingAppServiceBase", |
|||
"namespace": "Volo.Blogging", |
|||
"declaringAssemblyName": "Volo.Blogging.Application" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
"Volo.Blogging.Posts.IPostAppService" |
|||
{ |
|||
"name": "IApplicationService", |
|||
"namespace": "Volo.Abp.Application.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IRemoteService", |
|||
"namespace": "Volo.Abp", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IAvoidDuplicateCrossCuttingConcerns", |
|||
"namespace": "Volo.Abp.Aspects", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IValidationEnabled", |
|||
"namespace": "Volo.Abp.Validation", |
|||
"declaringAssemblyName": "Volo.Abp.Validation" |
|||
}, |
|||
{ |
|||
"name": "IUnitOfWorkEnabled", |
|||
"namespace": "Volo.Abp.Uow", |
|||
"declaringAssemblyName": "Volo.Abp.Uow" |
|||
}, |
|||
{ |
|||
"name": "IAuditingEnabled", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IGlobalFeatureCheckingEnabled", |
|||
"namespace": "Volo.Abp.GlobalFeatures", |
|||
"declaringAssemblyName": "Volo.Abp.GlobalFeatures" |
|||
}, |
|||
{ |
|||
"name": "ITransientDependency", |
|||
"namespace": "Volo.Abp.DependencyInjection", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IPostAppService", |
|||
"namespace": "Volo.Blogging.Posts", |
|||
"declaringAssemblyName": "Volo.Blogging.Application.Contracts" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "ListResultDto<PostWithDetailsDto>", |
|||
"isAsync": true, |
|||
"name": "GetListByBlogIdAndTagNameAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Guid", |
|||
"name": "id", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "tagName", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "ListResultDto<PostWithDetailsDto>", |
|||
"isAsync": true, |
|||
"name": "GetTimeOrderedListAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Guid", |
|||
"name": "blogId", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "PostWithDetailsDto", |
|||
"isAsync": true, |
|||
"name": "GetForReadingAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "GetPostInput", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "PostWithDetailsDto", |
|||
"isAsync": true, |
|||
"name": "GetAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Guid", |
|||
"name": "id", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": true, |
|||
"name": "DeleteAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Guid", |
|||
"name": "id", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "PostWithDetailsDto", |
|||
"isAsync": true, |
|||
"name": "UpdateAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Guid", |
|||
"name": "id", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "UpdatePostDto", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "PostWithDetailsDto", |
|||
"isAsync": true, |
|||
"name": "CreateAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "CreatePostDto", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"contentType": "applicationService", |
|||
"name": "PostAppService" |
|||
"name": "PostAppService", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Blogging.Files", |
|||
"summary": null, |
|||
"baseClass": { |
|||
"name": "BloggingAppServiceBase", |
|||
"namespace": "Volo.Blogging", |
|||
"declaringAssemblyName": "Volo.Blogging.Application" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
"Volo.Blogging.Files.IFileAppService" |
|||
{ |
|||
"name": "IApplicationService", |
|||
"namespace": "Volo.Abp.Application.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IRemoteService", |
|||
"namespace": "Volo.Abp", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IAvoidDuplicateCrossCuttingConcerns", |
|||
"namespace": "Volo.Abp.Aspects", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IValidationEnabled", |
|||
"namespace": "Volo.Abp.Validation", |
|||
"declaringAssemblyName": "Volo.Abp.Validation" |
|||
}, |
|||
{ |
|||
"name": "IUnitOfWorkEnabled", |
|||
"namespace": "Volo.Abp.Uow", |
|||
"declaringAssemblyName": "Volo.Abp.Uow" |
|||
}, |
|||
{ |
|||
"name": "IAuditingEnabled", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IGlobalFeatureCheckingEnabled", |
|||
"namespace": "Volo.Abp.GlobalFeatures", |
|||
"declaringAssemblyName": "Volo.Abp.GlobalFeatures" |
|||
}, |
|||
{ |
|||
"name": "ITransientDependency", |
|||
"namespace": "Volo.Abp.DependencyInjection", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IFileAppService", |
|||
"namespace": "Volo.Blogging.Files", |
|||
"declaringAssemblyName": "Volo.Blogging.Application.Contracts" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "RawFileDto", |
|||
"isAsync": true, |
|||
"name": "GetAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "name", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "IRemoteStreamContent", |
|||
"isAsync": true, |
|||
"name": "GetFileAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "name", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "FileUploadOutputDto", |
|||
"isAsync": true, |
|||
"name": "CreateAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "FileUploadInputDto", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"contentType": "applicationService", |
|||
"name": "FileAppService" |
|||
"name": "FileAppService", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Blogging.Comments", |
|||
"summary": null, |
|||
"baseClass": { |
|||
"name": "BloggingAppServiceBase", |
|||
"namespace": "Volo.Blogging", |
|||
"declaringAssemblyName": "Volo.Blogging.Application" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
"Volo.Blogging.Comments.ICommentAppService" |
|||
{ |
|||
"name": "IApplicationService", |
|||
"namespace": "Volo.Abp.Application.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IRemoteService", |
|||
"namespace": "Volo.Abp", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IAvoidDuplicateCrossCuttingConcerns", |
|||
"namespace": "Volo.Abp.Aspects", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IValidationEnabled", |
|||
"namespace": "Volo.Abp.Validation", |
|||
"declaringAssemblyName": "Volo.Abp.Validation" |
|||
}, |
|||
{ |
|||
"name": "IUnitOfWorkEnabled", |
|||
"namespace": "Volo.Abp.Uow", |
|||
"declaringAssemblyName": "Volo.Abp.Uow" |
|||
}, |
|||
{ |
|||
"name": "IAuditingEnabled", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IGlobalFeatureCheckingEnabled", |
|||
"namespace": "Volo.Abp.GlobalFeatures", |
|||
"declaringAssemblyName": "Volo.Abp.GlobalFeatures" |
|||
}, |
|||
{ |
|||
"name": "ITransientDependency", |
|||
"namespace": "Volo.Abp.DependencyInjection", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "ICommentAppService", |
|||
"namespace": "Volo.Blogging.Comments", |
|||
"declaringAssemblyName": "Volo.Blogging.Application.Contracts" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "List<CommentWithRepliesDto>", |
|||
"isAsync": true, |
|||
"name": "GetHierarchicalListOfPostAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Guid", |
|||
"name": "postId", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "CommentWithDetailsDto", |
|||
"isAsync": true, |
|||
"name": "CreateAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "CreateCommentDto", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "CommentWithDetailsDto", |
|||
"isAsync": true, |
|||
"name": "UpdateAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Guid", |
|||
"name": "id", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "UpdateCommentDto", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": true, |
|||
"name": "DeleteAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Guid", |
|||
"name": "id", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"contentType": "applicationService", |
|||
"name": "CommentAppService" |
|||
"name": "CommentAppService", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Blogging.Blogs", |
|||
"summary": null, |
|||
"baseClass": { |
|||
"name": "BloggingAppServiceBase", |
|||
"namespace": "Volo.Blogging", |
|||
"declaringAssemblyName": "Volo.Blogging.Application" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
"Volo.Blogging.Blogs.IBlogAppService" |
|||
{ |
|||
"name": "IApplicationService", |
|||
"namespace": "Volo.Abp.Application.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IRemoteService", |
|||
"namespace": "Volo.Abp", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IAvoidDuplicateCrossCuttingConcerns", |
|||
"namespace": "Volo.Abp.Aspects", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IValidationEnabled", |
|||
"namespace": "Volo.Abp.Validation", |
|||
"declaringAssemblyName": "Volo.Abp.Validation" |
|||
}, |
|||
{ |
|||
"name": "IUnitOfWorkEnabled", |
|||
"namespace": "Volo.Abp.Uow", |
|||
"declaringAssemblyName": "Volo.Abp.Uow" |
|||
}, |
|||
{ |
|||
"name": "IAuditingEnabled", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IGlobalFeatureCheckingEnabled", |
|||
"namespace": "Volo.Abp.GlobalFeatures", |
|||
"declaringAssemblyName": "Volo.Abp.GlobalFeatures" |
|||
}, |
|||
{ |
|||
"name": "ITransientDependency", |
|||
"namespace": "Volo.Abp.DependencyInjection", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IBlogAppService", |
|||
"namespace": "Volo.Blogging.Blogs", |
|||
"declaringAssemblyName": "Volo.Blogging.Application.Contracts" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "ListResultDto<BlogDto>", |
|||
"isAsync": true, |
|||
"name": "GetListAsync", |
|||
"summary": null, |
|||
"parameters": [] |
|||
}, |
|||
{ |
|||
"returnType": "BlogDto", |
|||
"isAsync": true, |
|||
"name": "GetByShortNameAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "shortName", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "BlogDto", |
|||
"isAsync": true, |
|||
"name": "GetAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Guid", |
|||
"name": "id", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"contentType": "applicationService", |
|||
"name": "BlogAppService" |
|||
"name": "BlogAppService", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,19 @@ |
|||
{ |
|||
"name": "Volo.Blogging.Domain.Shared", |
|||
"hash": "5c72d38b48fd549c1e4d37eb5f4a5f8e", |
|||
"hash": "663404dba15328a6b34e3a64e070c084", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Blogging", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Validation", |
|||
"namespace": "Volo.Abp.Validation", |
|||
"name": "AbpValidationModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "BloggingDomainSharedModule" |
|||
"name": "BloggingDomainSharedModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,135 +1,764 @@ |
|||
{ |
|||
"name": "Volo.Blogging.Domain", |
|||
"hash": "bf1806736d7d435af015acb0aac2eab2", |
|||
"hash": "251e283069fc4f064f90030206ca5957", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Blogging", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Blogging.Domain.Shared", |
|||
"namespace": "Volo.Blogging", |
|||
"name": "BloggingDomainSharedModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain", |
|||
"namespace": "Volo.Abp.Domain", |
|||
"name": "AbpDddDomainModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AutoMapper", |
|||
"namespace": "Volo.Abp.AutoMapper", |
|||
"name": "AbpAutoMapperModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Caching", |
|||
"namespace": "Volo.Abp.Caching", |
|||
"name": "AbpCachingModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "BloggingDomainModule" |
|||
"name": "BloggingDomainModule", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"baseClass": { |
|||
"name": "AggregateRoot<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
{ |
|||
"name": "IEntity", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IEntity<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IAggregateRoot<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IAggregateRoot", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IGeneratesDomainEvents", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IHasExtraProperties", |
|||
"namespace": "Volo.Abp.Data", |
|||
"declaringAssemblyName": "Volo.Abp.ObjectExtending" |
|||
}, |
|||
{ |
|||
"name": "IHasConcurrencyStamp", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Data" |
|||
}, |
|||
{ |
|||
"name": "IUser", |
|||
"namespace": "Volo.Abp.Users", |
|||
"declaringAssemblyName": "Volo.Abp.Users.Domain" |
|||
}, |
|||
{ |
|||
"name": "IMultiTenant", |
|||
"namespace": "Volo.Abp.MultiTenancy", |
|||
"declaringAssemblyName": "Volo.Abp.MultiTenancy" |
|||
}, |
|||
{ |
|||
"name": "IUpdateUserData", |
|||
"namespace": "Volo.Abp.Users", |
|||
"declaringAssemblyName": "Volo.Abp.Users.Domain" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "Boolean", |
|||
"isAsync": false, |
|||
"name": "Update", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "IUserData", |
|||
"name": "user", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"namespace": "Volo.Blogging.Users", |
|||
"primaryKeyType": "Guid", |
|||
"summary": null, |
|||
"collectionProperties": [], |
|||
"navigationProperties": [], |
|||
"collectionProperties": {}, |
|||
"navigationProperties": {}, |
|||
"contentType": "aggregateRoot", |
|||
"name": "BlogUser" |
|||
"name": "BlogUser", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"baseClass": { |
|||
"name": "FullAuditedAggregateRoot<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
{ |
|||
"name": "IEntity", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IEntity<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IAggregateRoot<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IAggregateRoot", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IGeneratesDomainEvents", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IHasExtraProperties", |
|||
"namespace": "Volo.Abp.Data", |
|||
"declaringAssemblyName": "Volo.Abp.ObjectExtending" |
|||
}, |
|||
{ |
|||
"name": "IHasConcurrencyStamp", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Data" |
|||
}, |
|||
{ |
|||
"name": "ICreationAuditedObject", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IHasCreationTime", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IMayHaveCreator", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IAuditedObject", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IModificationAuditedObject", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IHasModificationTime", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IFullAuditedObject", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IDeletionAuditedObject", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IHasDeletionTime", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "ISoftDelete", |
|||
"namespace": "Volo.Abp", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": false, |
|||
"name": "SetName", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "name", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": false, |
|||
"name": "IncreaseUsageCount", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Int32", |
|||
"name": "number", |
|||
"isOptional": true |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": false, |
|||
"name": "DecreaseUsageCount", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Int32", |
|||
"name": "number", |
|||
"isOptional": true |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": false, |
|||
"name": "SetDescription", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "description", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"namespace": "Volo.Blogging.Tagging", |
|||
"primaryKeyType": "Guid", |
|||
"summary": null, |
|||
"collectionProperties": [], |
|||
"navigationProperties": [], |
|||
"collectionProperties": {}, |
|||
"navigationProperties": {}, |
|||
"contentType": "aggregateRoot", |
|||
"name": "Tag" |
|||
"name": "Tag", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"baseClass": { |
|||
"name": "FullAuditedAggregateRoot<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
{ |
|||
"name": "IEntity", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IEntity<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IAggregateRoot<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IAggregateRoot", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IGeneratesDomainEvents", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IHasExtraProperties", |
|||
"namespace": "Volo.Abp.Data", |
|||
"declaringAssemblyName": "Volo.Abp.ObjectExtending" |
|||
}, |
|||
{ |
|||
"name": "IHasConcurrencyStamp", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Data" |
|||
}, |
|||
{ |
|||
"name": "ICreationAuditedObject", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IHasCreationTime", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IMayHaveCreator", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IAuditedObject", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IModificationAuditedObject", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IHasModificationTime", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IFullAuditedObject", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IDeletionAuditedObject", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IHasDeletionTime", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "ISoftDelete", |
|||
"namespace": "Volo.Abp", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "Post", |
|||
"isAsync": false, |
|||
"name": "IncreaseReadCount", |
|||
"summary": null, |
|||
"parameters": [] |
|||
}, |
|||
{ |
|||
"returnType": "Post", |
|||
"isAsync": false, |
|||
"name": "SetTitle", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "title", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Post", |
|||
"isAsync": false, |
|||
"name": "SetUrl", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "url", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": false, |
|||
"name": "AddTag", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Guid", |
|||
"name": "tagId", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": false, |
|||
"name": "RemoveTag", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Guid", |
|||
"name": "tagId", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"namespace": "Volo.Blogging.Posts", |
|||
"primaryKeyType": "Guid", |
|||
"summary": null, |
|||
"collectionProperties": [ |
|||
"Volo.Blogging.Posts.PostTag" |
|||
], |
|||
"navigationProperties": [], |
|||
"collectionProperties": { |
|||
"tags": { |
|||
"name": "PostTag", |
|||
"namespace": "Volo.Blogging.Posts", |
|||
"declaringAssemblyName": "Volo.Blogging.Domain" |
|||
} |
|||
}, |
|||
"navigationProperties": {}, |
|||
"contentType": "aggregateRoot", |
|||
"name": "Post" |
|||
"name": "Post", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"baseClass": { |
|||
"name": "FullAuditedAggregateRoot<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
{ |
|||
"name": "IEntity", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IEntity<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IAggregateRoot<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IAggregateRoot", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IGeneratesDomainEvents", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IHasExtraProperties", |
|||
"namespace": "Volo.Abp.Data", |
|||
"declaringAssemblyName": "Volo.Abp.ObjectExtending" |
|||
}, |
|||
{ |
|||
"name": "IHasConcurrencyStamp", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Data" |
|||
}, |
|||
{ |
|||
"name": "ICreationAuditedObject", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IHasCreationTime", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IMayHaveCreator", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IAuditedObject", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IModificationAuditedObject", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IHasModificationTime", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IFullAuditedObject", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IDeletionAuditedObject", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IHasDeletionTime", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "ISoftDelete", |
|||
"namespace": "Volo.Abp", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": false, |
|||
"name": "SetText", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "text", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"namespace": "Volo.Blogging.Comments", |
|||
"primaryKeyType": "Guid", |
|||
"summary": null, |
|||
"collectionProperties": [], |
|||
"navigationProperties": [], |
|||
"collectionProperties": {}, |
|||
"navigationProperties": {}, |
|||
"contentType": "aggregateRoot", |
|||
"name": "Comment" |
|||
"name": "Comment", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"baseClass": { |
|||
"name": "FullAuditedAggregateRoot<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
{ |
|||
"name": "IEntity", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IEntity<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IAggregateRoot<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IAggregateRoot", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IGeneratesDomainEvents", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IHasExtraProperties", |
|||
"namespace": "Volo.Abp.Data", |
|||
"declaringAssemblyName": "Volo.Abp.ObjectExtending" |
|||
}, |
|||
{ |
|||
"name": "IHasConcurrencyStamp", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Data" |
|||
}, |
|||
{ |
|||
"name": "ICreationAuditedObject", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IHasCreationTime", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IMayHaveCreator", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IAuditedObject", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IModificationAuditedObject", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IHasModificationTime", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IFullAuditedObject", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IDeletionAuditedObject", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IHasDeletionTime", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "ISoftDelete", |
|||
"namespace": "Volo.Abp", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "Blog", |
|||
"isAsync": false, |
|||
"name": "SetName", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "name", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Blog", |
|||
"isAsync": false, |
|||
"name": "SetShortName", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "shortName", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"namespace": "Volo.Blogging.Blogs", |
|||
"primaryKeyType": "Guid", |
|||
"summary": null, |
|||
"collectionProperties": [], |
|||
"navigationProperties": [], |
|||
"collectionProperties": {}, |
|||
"navigationProperties": {}, |
|||
"contentType": "aggregateRoot", |
|||
"name": "Blog" |
|||
"name": "Blog", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Blogging.Users", |
|||
"summary": null, |
|||
"entityAnalyzeModel": { |
|||
"namespace": "Volo.Blogging.Users", |
|||
"primaryKeyType": "Guid", |
|||
"summary": null, |
|||
"collectionProperties": [], |
|||
"navigationProperties": [], |
|||
"collectionProperties": {}, |
|||
"navigationProperties": {}, |
|||
"contentType": "entity", |
|||
"name": "BlogUser" |
|||
"name": "BlogUser", |
|||
"summary": null |
|||
}, |
|||
"contentType": "repositoryInterface", |
|||
"name": "IBlogUserRepository" |
|||
"name": "IBlogUserRepository", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Blogging.Tagging", |
|||
"summary": null, |
|||
"entityAnalyzeModel": { |
|||
"namespace": "Volo.Blogging.Tagging", |
|||
"primaryKeyType": "Guid", |
|||
"summary": null, |
|||
"collectionProperties": [], |
|||
"navigationProperties": [], |
|||
"collectionProperties": {}, |
|||
"navigationProperties": {}, |
|||
"contentType": "entity", |
|||
"name": "Tag" |
|||
"name": "Tag", |
|||
"summary": null |
|||
}, |
|||
"contentType": "repositoryInterface", |
|||
"name": "ITagRepository" |
|||
"name": "ITagRepository", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Blogging.Posts", |
|||
"summary": null, |
|||
"entityAnalyzeModel": { |
|||
"namespace": "Volo.Blogging.Posts", |
|||
"primaryKeyType": "Guid", |
|||
"summary": null, |
|||
"collectionProperties": [ |
|||
"Volo.Blogging.Posts.PostTag" |
|||
], |
|||
"navigationProperties": [], |
|||
"collectionProperties": { |
|||
"tags": { |
|||
"name": "PostTag", |
|||
"namespace": "Volo.Blogging.Posts", |
|||
"declaringAssemblyName": "Volo.Blogging.Domain" |
|||
} |
|||
}, |
|||
"navigationProperties": {}, |
|||
"contentType": "entity", |
|||
"name": "Post" |
|||
"name": "Post", |
|||
"summary": null |
|||
}, |
|||
"contentType": "repositoryInterface", |
|||
"name": "IPostRepository" |
|||
"name": "IPostRepository", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Blogging.Comments", |
|||
"summary": null, |
|||
"entityAnalyzeModel": { |
|||
"namespace": "Volo.Blogging.Comments", |
|||
"primaryKeyType": "Guid", |
|||
"summary": null, |
|||
"collectionProperties": [], |
|||
"navigationProperties": [], |
|||
"collectionProperties": {}, |
|||
"navigationProperties": {}, |
|||
"contentType": "entity", |
|||
"name": "Comment" |
|||
"name": "Comment", |
|||
"summary": null |
|||
}, |
|||
"contentType": "repositoryInterface", |
|||
"name": "ICommentRepository" |
|||
"name": "ICommentRepository", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Blogging.Blogs", |
|||
"summary": null, |
|||
"entityAnalyzeModel": { |
|||
"namespace": "Volo.Blogging.Blogs", |
|||
"primaryKeyType": "Guid", |
|||
"summary": null, |
|||
"collectionProperties": [], |
|||
"navigationProperties": [], |
|||
"collectionProperties": {}, |
|||
"navigationProperties": {}, |
|||
"contentType": "entity", |
|||
"name": "Blog" |
|||
"name": "Blog", |
|||
"summary": null |
|||
}, |
|||
"contentType": "repositoryInterface", |
|||
"name": "IBlogRepository" |
|||
"name": "IBlogRepository", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,24 @@ |
|||
{ |
|||
"name": "Volo.Blogging.HttpApi.Client", |
|||
"hash": "81cf265f097ded223f74972a77367635", |
|||
"hash": "e178d4743a33b2347116ed41b7a33b8a", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Blogging", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Blogging.Application.Contracts", |
|||
"namespace": "Volo.Blogging", |
|||
"name": "BloggingApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Http.Client", |
|||
"namespace": "Volo.Abp.Http.Client", |
|||
"name": "AbpHttpClientModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "BloggingHttpApiClientModule" |
|||
"name": "BloggingHttpApiClientModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,24 @@ |
|||
{ |
|||
"name": "Volo.Blogging.HttpApi", |
|||
"hash": "185146640ff70ee3bc3e49c2ae9cbe23", |
|||
"hash": "a3c1367eda548ae63a49729764d415e1", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Blogging", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Blogging.Application.Contracts", |
|||
"namespace": "Volo.Blogging", |
|||
"name": "BloggingApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc", |
|||
"name": "AbpAspNetCoreMvcModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "BloggingHttpApiModule" |
|||
"name": "BloggingHttpApiModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,34 @@ |
|||
{ |
|||
"name": "Volo.Blogging.Web", |
|||
"hash": "1e34d5e0718fb581ffbca20cbf71f4f6", |
|||
"hash": "bea2114c23b1ba3762a05fb011eff2b1", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Blogging", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Blogging.Application.Contracts", |
|||
"namespace": "Volo.Blogging", |
|||
"name": "BloggingApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc.UI.Bootstrap", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc.UI.Bootstrap", |
|||
"name": "AbpAspNetCoreMvcUiBootstrapModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc.UI.Bundling", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc.UI.Bundling", |
|||
"name": "AbpAspNetCoreMvcUiBundlingModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AutoMapper", |
|||
"namespace": "Volo.Abp.AutoMapper", |
|||
"name": "AbpAutoMapperModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "BloggingWebModule" |
|||
"name": "BloggingWebModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -0,0 +1,29 @@ |
|||
{ |
|||
"name": "Volo.ClientSimulation.Demo", |
|||
"hash": "b10abc971bc805f3be3d2f5d3dcb2e49", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.ClientSimulation.Demo", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic", |
|||
"name": "AbpAspNetCoreMvcUiBasicThemeModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Autofac", |
|||
"namespace": "Volo.Abp.Autofac", |
|||
"name": "AbpAutofacModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.ClientSimulation.Web", |
|||
"namespace": "Volo.ClientSimulation", |
|||
"name": "ClientSimulationWebModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "ClientSimulationDemoModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -0,0 +1,29 @@ |
|||
{ |
|||
"name": "Volo.ClientSimulation.Web", |
|||
"hash": "ac406ecd81f25a485511ff8e4cb7cd8a", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.ClientSimulation", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.ClientSimulation", |
|||
"namespace": "Volo.ClientSimulation", |
|||
"name": "ClientSimulationModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Http.Client.IdentityModel.Web", |
|||
"namespace": "Volo.Abp.Http.Client.IdentityModel.Web", |
|||
"name": "AbpHttpClientIdentityModelWebModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared", |
|||
"name": "AbpAspNetCoreMvcUiThemeSharedModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "ClientSimulationWebModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -0,0 +1,19 @@ |
|||
{ |
|||
"name": "Volo.ClientSimulation", |
|||
"hash": "38b4a62f0bd02fdbe3a2265c0ea0c83a", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.ClientSimulation", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Http.Client.IdentityModel", |
|||
"namespace": "Volo.Abp.Http.Client.IdentityModel", |
|||
"name": "AbpHttpClientIdentityModelModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "ClientSimulationModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,74 @@ |
|||
{ |
|||
"name": "Volo.CmsKit.HttpApi.Host", |
|||
"hash": "da40e46c3889c8e7a250a070a7366fac", |
|||
"hash": "efbde27b2d57ead9638e0d097ccc028f", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.CmsKit", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Application", |
|||
"namespace": "Volo.CmsKit", |
|||
"name": "CmsKitApplicationModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.EntityFrameworkCore", |
|||
"namespace": "Volo.CmsKit.EntityFrameworkCore", |
|||
"name": "CmsKitEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.HttpApi", |
|||
"namespace": "Volo.CmsKit", |
|||
"name": "CmsKitHttpApiModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy", |
|||
"name": "AbpAspNetCoreMvcUiMultiTenancyModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Autofac", |
|||
"namespace": "Volo.Abp.Autofac", |
|||
"name": "AbpAutofacModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Caching.StackExchangeRedis", |
|||
"namespace": "Volo.Abp.Caching.StackExchangeRedis", |
|||
"name": "AbpCachingStackExchangeRedisModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.EntityFrameworkCore.SqlServer", |
|||
"namespace": "Volo.Abp.EntityFrameworkCore.SqlServer", |
|||
"name": "AbpEntityFrameworkCoreSqlServerModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AuditLogging.EntityFrameworkCore", |
|||
"namespace": "Volo.Abp.AuditLogging.EntityFrameworkCore", |
|||
"name": "AbpAuditLoggingEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.PermissionManagement.EntityFrameworkCore", |
|||
"namespace": "Volo.Abp.PermissionManagement.EntityFrameworkCore", |
|||
"name": "AbpPermissionManagementEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.SettingManagement.EntityFrameworkCore", |
|||
"namespace": "Volo.Abp.SettingManagement.EntityFrameworkCore", |
|||
"name": "AbpSettingManagementEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Serilog", |
|||
"namespace": "Volo.Abp.AspNetCore.Serilog", |
|||
"name": "AbpAspNetCoreSerilogModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.BlobStoring.Database.EntityFrameworkCore", |
|||
"namespace": "Volo.Abp.BlobStoring.Database.EntityFrameworkCore", |
|||
"name": "BlobStoringDatabaseEntityFrameworkCoreModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "CmsKitHttpApiHostModule" |
|||
"name": "CmsKitHttpApiHostModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -0,0 +1,144 @@ |
|||
{ |
|||
"name": "Volo.CmsKit.IdentityServer", |
|||
"hash": "51a19cfdc69515b40f212ea14d7170ce", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.CmsKit", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Account.Web.IdentityServer", |
|||
"namespace": "Volo.Abp.Account.Web", |
|||
"name": "AbpAccountWebIdentityServerModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Account.Application", |
|||
"namespace": "Volo.Abp.Account", |
|||
"name": "AbpAccountApplicationModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Account.HttpApi", |
|||
"namespace": "Volo.Abp.Account", |
|||
"name": "AbpAccountHttpApiModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy", |
|||
"name": "AbpAspNetCoreMvcUiMultiTenancyModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc", |
|||
"name": "AbpAspNetCoreMvcModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic", |
|||
"name": "AbpAspNetCoreMvcUiBasicThemeModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AuditLogging.EntityFrameworkCore", |
|||
"namespace": "Volo.Abp.AuditLogging.EntityFrameworkCore", |
|||
"name": "AbpAuditLoggingEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Autofac", |
|||
"namespace": "Volo.Abp.Autofac", |
|||
"name": "AbpAutofacModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Caching.StackExchangeRedis", |
|||
"namespace": "Volo.Abp.Caching.StackExchangeRedis", |
|||
"name": "AbpCachingStackExchangeRedisModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.EntityFrameworkCore.SqlServer", |
|||
"namespace": "Volo.Abp.EntityFrameworkCore.SqlServer", |
|||
"name": "AbpEntityFrameworkCoreSqlServerModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Identity.EntityFrameworkCore", |
|||
"namespace": "Volo.Abp.Identity.EntityFrameworkCore", |
|||
"name": "AbpIdentityEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Identity.Application", |
|||
"namespace": "Volo.Abp.Identity", |
|||
"name": "AbpIdentityApplicationModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Identity.HttpApi", |
|||
"namespace": "Volo.Abp.Identity", |
|||
"name": "AbpIdentityHttpApiModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.IdentityServer.EntityFrameworkCore", |
|||
"namespace": "Volo.Abp.IdentityServer.EntityFrameworkCore", |
|||
"name": "AbpIdentityServerEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.PermissionManagement.Domain.Identity", |
|||
"namespace": "Volo.Abp.PermissionManagement.Identity", |
|||
"name": "AbpPermissionManagementDomainIdentityModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.PermissionManagement.EntityFrameworkCore", |
|||
"namespace": "Volo.Abp.PermissionManagement.EntityFrameworkCore", |
|||
"name": "AbpPermissionManagementEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.PermissionManagement.Application", |
|||
"namespace": "Volo.Abp.PermissionManagement", |
|||
"name": "AbpPermissionManagementApplicationModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.PermissionManagement.HttpApi", |
|||
"namespace": "Volo.Abp.PermissionManagement.HttpApi", |
|||
"name": "AbpPermissionManagementHttpApiModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.SettingManagement.EntityFrameworkCore", |
|||
"namespace": "Volo.Abp.SettingManagement.EntityFrameworkCore", |
|||
"name": "AbpSettingManagementEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.FeatureManagement.Application", |
|||
"namespace": "Volo.Abp.FeatureManagement", |
|||
"name": "AbpFeatureManagementApplicationModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.TenantManagement.EntityFrameworkCore", |
|||
"namespace": "Volo.Abp.TenantManagement.EntityFrameworkCore", |
|||
"name": "AbpTenantManagementEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.TenantManagement.Application", |
|||
"namespace": "Volo.Abp.TenantManagement", |
|||
"name": "AbpTenantManagementApplicationModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.TenantManagement.HttpApi", |
|||
"namespace": "Volo.Abp.TenantManagement", |
|||
"name": "AbpTenantManagementHttpApiModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Authentication.JwtBearer", |
|||
"namespace": "Volo.Abp.AspNetCore.Authentication.JwtBearer", |
|||
"name": "AbpAspNetCoreAuthenticationJwtBearerModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Application.Contracts", |
|||
"namespace": "Volo.CmsKit", |
|||
"name": "CmsKitApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Serilog", |
|||
"namespace": "Volo.Abp.AspNetCore.Serilog", |
|||
"name": "AbpAspNetCoreSerilogModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "CmsKitIdentityServerModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,89 @@ |
|||
{ |
|||
"name": "Volo.CmsKit.Web.Host", |
|||
"hash": "b8c7f8a05e4ae2f56af72d7c331242d7", |
|||
"hash": "1c229420cd1cafa77509174e7c9a47a4", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.CmsKit", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Web", |
|||
"namespace": "Volo.CmsKit.Web", |
|||
"name": "CmsKitWebModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.HttpApi.Client", |
|||
"namespace": "Volo.CmsKit", |
|||
"name": "CmsKitHttpApiClientModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Authentication.OAuth", |
|||
"namespace": "Volo.Abp.AspNetCore.Authentication.OAuth", |
|||
"name": "AbpAspNetCoreAuthenticationOAuthModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc.Client", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc.Client", |
|||
"name": "AbpAspNetCoreMvcClientModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic", |
|||
"name": "AbpAspNetCoreMvcUiBasicThemeModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Autofac", |
|||
"namespace": "Volo.Abp.Autofac", |
|||
"name": "AbpAutofacModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Caching.StackExchangeRedis", |
|||
"namespace": "Volo.Abp.Caching.StackExchangeRedis", |
|||
"name": "AbpCachingStackExchangeRedisModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Http.Client.IdentityModel.Web", |
|||
"namespace": "Volo.Abp.Http.Client.IdentityModel.Web", |
|||
"name": "AbpHttpClientIdentityModelWebModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Identity.Web", |
|||
"namespace": "Volo.Abp.Identity.Web", |
|||
"name": "AbpIdentityWebModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Identity.HttpApi.Client", |
|||
"namespace": "Volo.Abp.Identity", |
|||
"name": "AbpIdentityHttpApiClientModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.TenantManagement.Web", |
|||
"namespace": "Volo.Abp.TenantManagement.Web", |
|||
"name": "AbpTenantManagementWebModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.TenantManagement.HttpApi.Client", |
|||
"namespace": "Volo.Abp.TenantManagement", |
|||
"name": "AbpTenantManagementHttpApiClientModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.FeatureManagement.HttpApi.Client", |
|||
"namespace": "Volo.Abp.FeatureManagement", |
|||
"name": "AbpFeatureManagementHttpApiClientModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.PermissionManagement.HttpApi.Client", |
|||
"namespace": "Volo.Abp.PermissionManagement", |
|||
"name": "AbpPermissionManagementHttpApiClientModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Serilog", |
|||
"namespace": "Volo.Abp.AspNetCore.Serilog", |
|||
"name": "AbpAspNetCoreSerilogModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "CmsKitWebHostModule" |
|||
"name": "CmsKitWebHostModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -0,0 +1,169 @@ |
|||
{ |
|||
"name": "Volo.CmsKit.Web.Unified", |
|||
"hash": "508b206ebba8c3a83616a07c5fb65fae", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.CmsKit", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Web", |
|||
"namespace": "Volo.CmsKit.Web", |
|||
"name": "CmsKitWebModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Application", |
|||
"namespace": "Volo.CmsKit", |
|||
"name": "CmsKitApplicationModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.HttpApi", |
|||
"namespace": "Volo.CmsKit", |
|||
"name": "CmsKitHttpApiModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.EntityFrameworkCore", |
|||
"namespace": "Volo.CmsKit.EntityFrameworkCore", |
|||
"name": "CmsKitEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AuditLogging.EntityFrameworkCore", |
|||
"namespace": "Volo.Abp.AuditLogging.EntityFrameworkCore", |
|||
"name": "AbpAuditLoggingEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Autofac", |
|||
"namespace": "Volo.Abp.Autofac", |
|||
"name": "AbpAutofacModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Account.Web", |
|||
"namespace": "Volo.Abp.Account.Web", |
|||
"name": "AbpAccountWebModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Account.Application", |
|||
"namespace": "Volo.Abp.Account", |
|||
"name": "AbpAccountApplicationModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Account.HttpApi", |
|||
"namespace": "Volo.Abp.Account", |
|||
"name": "AbpAccountHttpApiModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.EntityFrameworkCore.SqlServer", |
|||
"namespace": "Volo.Abp.EntityFrameworkCore.SqlServer", |
|||
"name": "AbpEntityFrameworkCoreSqlServerModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.SettingManagement.EntityFrameworkCore", |
|||
"namespace": "Volo.Abp.SettingManagement.EntityFrameworkCore", |
|||
"name": "AbpSettingManagementEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.PermissionManagement.EntityFrameworkCore", |
|||
"namespace": "Volo.Abp.PermissionManagement.EntityFrameworkCore", |
|||
"name": "AbpPermissionManagementEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.PermissionManagement.Application", |
|||
"namespace": "Volo.Abp.PermissionManagement", |
|||
"name": "AbpPermissionManagementApplicationModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.PermissionManagement.HttpApi", |
|||
"namespace": "Volo.Abp.PermissionManagement.HttpApi", |
|||
"name": "AbpPermissionManagementHttpApiModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Identity.Web", |
|||
"namespace": "Volo.Abp.Identity.Web", |
|||
"name": "AbpIdentityWebModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Identity.Application", |
|||
"namespace": "Volo.Abp.Identity", |
|||
"name": "AbpIdentityApplicationModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Identity.HttpApi", |
|||
"namespace": "Volo.Abp.Identity", |
|||
"name": "AbpIdentityHttpApiModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Identity.EntityFrameworkCore", |
|||
"namespace": "Volo.Abp.Identity.EntityFrameworkCore", |
|||
"name": "AbpIdentityEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.PermissionManagement.Domain.Identity", |
|||
"namespace": "Volo.Abp.PermissionManagement.Identity", |
|||
"name": "AbpPermissionManagementDomainIdentityModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.FeatureManagement.Application", |
|||
"namespace": "Volo.Abp.FeatureManagement", |
|||
"name": "AbpFeatureManagementApplicationModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.FeatureManagement.HttpApi", |
|||
"namespace": "Volo.Abp.FeatureManagement", |
|||
"name": "AbpFeatureManagementHttpApiModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.FeatureManagement.EntityFrameworkCore", |
|||
"namespace": "Volo.Abp.FeatureManagement.EntityFrameworkCore", |
|||
"name": "AbpFeatureManagementEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.FeatureManagement.Web", |
|||
"namespace": "Volo.Abp.FeatureManagement", |
|||
"name": "AbpFeatureManagementWebModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.TenantManagement.Web", |
|||
"namespace": "Volo.Abp.TenantManagement.Web", |
|||
"name": "AbpTenantManagementWebModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.TenantManagement.Application", |
|||
"namespace": "Volo.Abp.TenantManagement", |
|||
"name": "AbpTenantManagementApplicationModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.TenantManagement.HttpApi", |
|||
"namespace": "Volo.Abp.TenantManagement", |
|||
"name": "AbpTenantManagementHttpApiModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.TenantManagement.EntityFrameworkCore", |
|||
"namespace": "Volo.Abp.TenantManagement.EntityFrameworkCore", |
|||
"name": "AbpTenantManagementEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic", |
|||
"name": "AbpAspNetCoreMvcUiBasicThemeModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Serilog", |
|||
"namespace": "Volo.Abp.AspNetCore.Serilog", |
|||
"name": "AbpAspNetCoreSerilogModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.BlobStoring.Database.EntityFrameworkCore", |
|||
"namespace": "Volo.Abp.BlobStoring.Database.EntityFrameworkCore", |
|||
"name": "BlobStoringDatabaseEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Swashbuckle", |
|||
"namespace": "Volo.Abp.Swashbuckle", |
|||
"name": "AbpSwashbuckleModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "CmsKitWebUnifiedModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,149 +1,194 @@ |
|||
{ |
|||
"name": "Volo.CmsKit.Admin.Application.Contracts", |
|||
"hash": "13d7ce3b75a6b7d304cc3ca44785a2e1", |
|||
"hash": "f823ecf14f09a112538b9030d69584ec", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.CmsKit.Admin", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Common.Application.Contracts", |
|||
"namespace": "Volo.CmsKit", |
|||
"name": "CmsKitCommonApplicationContractsModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "CmsKitAdminApplicationContractsModule" |
|||
"name": "CmsKitAdminApplicationContractsModule", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Comment Management", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "CmsKit.Comments" |
|||
"name": "CmsKit.Comments", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Delete", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "CmsKit.Comments.Delete" |
|||
"name": "CmsKit.Comments.Delete", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Tag Management", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "CmsKit.Tags" |
|||
"name": "CmsKit.Tags", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Create", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "CmsKit.Tags.Create" |
|||
"name": "CmsKit.Tags.Create", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Update", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "CmsKit.Tags.Update" |
|||
"name": "CmsKit.Tags.Update", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Delete", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "CmsKit.Tags.Delete" |
|||
"name": "CmsKit.Tags.Delete", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Page Management", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "CmsKit.Pages" |
|||
"name": "CmsKit.Pages", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Create", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "CmsKit.Pages.Create" |
|||
"name": "CmsKit.Pages.Create", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Update", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "CmsKit.Pages.Update" |
|||
"name": "CmsKit.Pages.Update", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Delete", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "CmsKit.Pages.Delete" |
|||
"name": "CmsKit.Pages.Delete", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Blog Management", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "CmsKit.Blogs" |
|||
"name": "CmsKit.Blogs", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Create", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "CmsKit.Blogs.Create" |
|||
"name": "CmsKit.Blogs.Create", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Update", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "CmsKit.Blogs.Update" |
|||
"name": "CmsKit.Blogs.Update", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Delete", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "CmsKit.Blogs.Delete" |
|||
"name": "CmsKit.Blogs.Delete", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Features", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "CmsKit.Blogs.Features" |
|||
"name": "CmsKit.Blogs.Features", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Blog Post Management", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "CmsKit.BlogPosts" |
|||
"name": "CmsKit.BlogPosts", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Create", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "CmsKit.BlogPosts.Create" |
|||
"name": "CmsKit.BlogPosts.Create", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Update", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "CmsKit.BlogPosts.Update" |
|||
"name": "CmsKit.BlogPosts.Update", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Delete", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "CmsKit.BlogPosts.Delete" |
|||
"name": "CmsKit.BlogPosts.Delete", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Publish", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "CmsKit.BlogPosts.Publish", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Menu Management", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "CmsKit.Menus" |
|||
"name": "CmsKit.Menus", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Create", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "CmsKit.Menus.Create" |
|||
"name": "CmsKit.Menus.Create", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Update", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "CmsKit.Menus.Update" |
|||
"name": "CmsKit.Menus.Update", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Delete", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "CmsKit.Menus.Delete" |
|||
"name": "CmsKit.Menus.Delete", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Global Resources", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "CmsKit.GlobalResources", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
File diff suppressed because it is too large
@ -1,11 +1,24 @@ |
|||
{ |
|||
"name": "Volo.CmsKit.Admin.HttpApi.Client", |
|||
"hash": "e9b74f85924bb2ea21d651612c337c8d", |
|||
"hash": "c5e56e4c87ad093dc595f003b988c399", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.CmsKit.Admin", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Admin.Application.Contracts", |
|||
"namespace": "Volo.CmsKit.Admin", |
|||
"name": "CmsKitAdminApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Common.HttpApi.Client", |
|||
"namespace": "Volo.CmsKit", |
|||
"name": "CmsKitCommonHttpApiClientModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "CmsKitAdminHttpApiClientModule" |
|||
"name": "CmsKitAdminHttpApiClientModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,24 @@ |
|||
{ |
|||
"name": "Volo.CmsKit.Admin.HttpApi", |
|||
"hash": "613b16275c5d464aa927a53ca452f7ab", |
|||
"hash": "3b9d25b1573a5a31a0b9b438692a46c5", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.CmsKit.Admin", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Admin.Application.Contracts", |
|||
"namespace": "Volo.CmsKit.Admin", |
|||
"name": "CmsKitAdminApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Common.HttpApi", |
|||
"namespace": "Volo.CmsKit", |
|||
"name": "CmsKitCommonHttpApiModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "CmsKitAdminHttpApiModule" |
|||
"name": "CmsKitAdminHttpApiModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,24 @@ |
|||
{ |
|||
"name": "Volo.CmsKit.Admin.Web", |
|||
"hash": "5f85ca165f250e4965434f76a73f0d24", |
|||
"hash": "3f3a5cce861b64a820bf6f3a21d2a240", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.CmsKit.Admin.Web", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Admin.Application.Contracts", |
|||
"namespace": "Volo.CmsKit.Admin", |
|||
"name": "CmsKitAdminApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Common.Web", |
|||
"namespace": "Volo.CmsKit.Web", |
|||
"name": "CmsKitCommonWebModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "CmsKitAdminWebModule" |
|||
"name": "CmsKitAdminWebModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,24 @@ |
|||
{ |
|||
"name": "Volo.CmsKit.Application.Contracts", |
|||
"hash": "66221b0ded80b705e67d327260d7d58e", |
|||
"hash": "10a8986c5a73cccdc57fffab9c55e191", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.CmsKit", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Public.Application.Contracts", |
|||
"namespace": "Volo.CmsKit.Public", |
|||
"name": "CmsKitPublicApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Admin.Application.Contracts", |
|||
"namespace": "Volo.CmsKit.Admin", |
|||
"name": "CmsKitAdminApplicationContractsModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "CmsKitApplicationContractsModule" |
|||
"name": "CmsKitApplicationContractsModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,29 @@ |
|||
{ |
|||
"name": "Volo.CmsKit.Application", |
|||
"hash": "d248c6d5c1b031c459ad8814fd734a18", |
|||
"hash": "bd0e61873c6f3c79523d518705c87089", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.CmsKit", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Public.Application", |
|||
"namespace": "Volo.CmsKit.Public", |
|||
"name": "CmsKitPublicApplicationModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Admin.Application", |
|||
"namespace": "Volo.CmsKit.Admin", |
|||
"name": "CmsKitAdminApplicationModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Application.Contracts", |
|||
"namespace": "Volo.CmsKit", |
|||
"name": "CmsKitApplicationContractsModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "CmsKitApplicationModule" |
|||
"name": "CmsKitApplicationModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,34 @@ |
|||
{ |
|||
"name": "Volo.CmsKit.Common.Application.Contracts", |
|||
"hash": "e7ec4922319be774a5aed0176b6f6f51", |
|||
"hash": "122d4a79e514bb0f349cb829500b1abf", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.CmsKit", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Domain.Shared", |
|||
"namespace": "Volo.CmsKit", |
|||
"name": "CmsKitDomainSharedModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application.Contracts", |
|||
"namespace": "Volo.Abp.Application", |
|||
"name": "AbpDddApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Authorization", |
|||
"namespace": "Volo.Abp.Authorization", |
|||
"name": "AbpAuthorizationModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Caching", |
|||
"namespace": "Volo.Abp.Caching", |
|||
"name": "AbpCachingModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "CmsKitCommonApplicationContractsModule" |
|||
"name": "CmsKitCommonApplicationContractsModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,38 +1,263 @@ |
|||
{ |
|||
"name": "Volo.CmsKit.Common.Application", |
|||
"hash": "07abca3b46e8b2c5233c0d9b1a803f02", |
|||
"hash": "e756f9adfa0c1e2a3e80ecfc6d43efb3", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.CmsKit", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Common.Application.Contracts", |
|||
"namespace": "Volo.CmsKit", |
|||
"name": "CmsKitCommonApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Domain", |
|||
"namespace": "Volo.CmsKit", |
|||
"name": "CmsKitDomainModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application", |
|||
"namespace": "Volo.Abp.Application", |
|||
"name": "AbpDddApplicationModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AutoMapper", |
|||
"namespace": "Volo.Abp.AutoMapper", |
|||
"name": "AbpAutoMapperModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "CmsKitCommonApplicationModule" |
|||
"name": "CmsKitCommonApplicationModule", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.CmsKit.Tags", |
|||
"summary": null, |
|||
"baseClass": { |
|||
"name": "CmsKitAppServiceBase", |
|||
"namespace": "Volo.CmsKit", |
|||
"declaringAssemblyName": "Volo.CmsKit.Common.Application" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
"Volo.CmsKit.Tags.ITagAppService" |
|||
{ |
|||
"name": "IApplicationService", |
|||
"namespace": "Volo.Abp.Application.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IRemoteService", |
|||
"namespace": "Volo.Abp", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IAvoidDuplicateCrossCuttingConcerns", |
|||
"namespace": "Volo.Abp.Aspects", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IValidationEnabled", |
|||
"namespace": "Volo.Abp.Validation", |
|||
"declaringAssemblyName": "Volo.Abp.Validation" |
|||
}, |
|||
{ |
|||
"name": "IUnitOfWorkEnabled", |
|||
"namespace": "Volo.Abp.Uow", |
|||
"declaringAssemblyName": "Volo.Abp.Uow" |
|||
}, |
|||
{ |
|||
"name": "IAuditingEnabled", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IGlobalFeatureCheckingEnabled", |
|||
"namespace": "Volo.Abp.GlobalFeatures", |
|||
"declaringAssemblyName": "Volo.Abp.GlobalFeatures" |
|||
}, |
|||
{ |
|||
"name": "ITransientDependency", |
|||
"namespace": "Volo.Abp.DependencyInjection", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "ITagAppService", |
|||
"namespace": "Volo.CmsKit.Tags", |
|||
"declaringAssemblyName": "Volo.CmsKit.Common.Application.Contracts" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "List<TagDto>", |
|||
"isAsync": true, |
|||
"name": "GetAllRelatedTagsAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "entityType", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "entityId", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"contentType": "applicationService", |
|||
"name": "TagAppService" |
|||
"name": "TagAppService", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.CmsKit.MediaDescriptors", |
|||
"summary": null, |
|||
"baseClass": { |
|||
"name": "CmsKitAppServiceBase", |
|||
"namespace": "Volo.CmsKit", |
|||
"declaringAssemblyName": "Volo.CmsKit.Common.Application" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
"Volo.CmsKit.MediaDescriptors.IMediaDescriptorAppService" |
|||
{ |
|||
"name": "IApplicationService", |
|||
"namespace": "Volo.Abp.Application.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IRemoteService", |
|||
"namespace": "Volo.Abp", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IAvoidDuplicateCrossCuttingConcerns", |
|||
"namespace": "Volo.Abp.Aspects", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IValidationEnabled", |
|||
"namespace": "Volo.Abp.Validation", |
|||
"declaringAssemblyName": "Volo.Abp.Validation" |
|||
}, |
|||
{ |
|||
"name": "IUnitOfWorkEnabled", |
|||
"namespace": "Volo.Abp.Uow", |
|||
"declaringAssemblyName": "Volo.Abp.Uow" |
|||
}, |
|||
{ |
|||
"name": "IAuditingEnabled", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IGlobalFeatureCheckingEnabled", |
|||
"namespace": "Volo.Abp.GlobalFeatures", |
|||
"declaringAssemblyName": "Volo.Abp.GlobalFeatures" |
|||
}, |
|||
{ |
|||
"name": "ITransientDependency", |
|||
"namespace": "Volo.Abp.DependencyInjection", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IMediaDescriptorAppService", |
|||
"namespace": "Volo.CmsKit.MediaDescriptors", |
|||
"declaringAssemblyName": "Volo.CmsKit.Common.Application.Contracts" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "RemoteStreamContent", |
|||
"isAsync": true, |
|||
"name": "DownloadAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Guid", |
|||
"name": "id", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"contentType": "applicationService", |
|||
"name": "MediaDescriptorAppService" |
|||
"name": "MediaDescriptorAppService", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.CmsKit.Blogs", |
|||
"summary": null, |
|||
"baseClass": { |
|||
"name": "CmsKitAppServiceBase", |
|||
"namespace": "Volo.CmsKit", |
|||
"declaringAssemblyName": "Volo.CmsKit.Common.Application" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
"Volo.CmsKit.Blogs.IBlogFeatureAppService" |
|||
{ |
|||
"name": "IApplicationService", |
|||
"namespace": "Volo.Abp.Application.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IRemoteService", |
|||
"namespace": "Volo.Abp", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IAvoidDuplicateCrossCuttingConcerns", |
|||
"namespace": "Volo.Abp.Aspects", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IValidationEnabled", |
|||
"namespace": "Volo.Abp.Validation", |
|||
"declaringAssemblyName": "Volo.Abp.Validation" |
|||
}, |
|||
{ |
|||
"name": "IUnitOfWorkEnabled", |
|||
"namespace": "Volo.Abp.Uow", |
|||
"declaringAssemblyName": "Volo.Abp.Uow" |
|||
}, |
|||
{ |
|||
"name": "IAuditingEnabled", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IGlobalFeatureCheckingEnabled", |
|||
"namespace": "Volo.Abp.GlobalFeatures", |
|||
"declaringAssemblyName": "Volo.Abp.GlobalFeatures" |
|||
}, |
|||
{ |
|||
"name": "ITransientDependency", |
|||
"namespace": "Volo.Abp.DependencyInjection", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IBlogFeatureAppService", |
|||
"namespace": "Volo.CmsKit.Blogs", |
|||
"declaringAssemblyName": "Volo.CmsKit.Common.Application.Contracts" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "BlogFeatureDto", |
|||
"isAsync": true, |
|||
"name": "GetOrDefaultAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Guid", |
|||
"name": "blogId", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "featureName", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"contentType": "applicationService", |
|||
"name": "BlogFeatureAppService" |
|||
"name": "BlogFeatureAppService", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,24 @@ |
|||
{ |
|||
"name": "Volo.CmsKit.Common.HttpApi.Client", |
|||
"hash": "047466e6fe6a292e3cf8d1f334303f42", |
|||
"hash": "06cc548d8ca3103220f3431b30630420", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.CmsKit", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Http.Client", |
|||
"namespace": "Volo.Abp.Http.Client", |
|||
"name": "AbpHttpClientModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Common.Application.Contracts", |
|||
"namespace": "Volo.CmsKit", |
|||
"name": "CmsKitCommonApplicationContractsModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "CmsKitCommonHttpApiClientModule" |
|||
"name": "CmsKitCommonHttpApiClientModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,24 @@ |
|||
{ |
|||
"name": "Volo.CmsKit.Common.HttpApi", |
|||
"hash": "9120a59e9639dcaec305df9314b55b02", |
|||
"hash": "c8b44ad7bc8c09d598cab4a54fcb0ebb", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.CmsKit", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc", |
|||
"name": "AbpAspNetCoreMvcModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Common.Application.Contracts", |
|||
"namespace": "Volo.CmsKit", |
|||
"name": "CmsKitCommonApplicationContractsModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "CmsKitCommonHttpApiModule" |
|||
"name": "CmsKitCommonHttpApiModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,29 @@ |
|||
{ |
|||
"name": "Volo.CmsKit.Common.Web", |
|||
"hash": "2540b0ef97a790d3999d72c87961397e", |
|||
"hash": "ef63b15751459a0eeec202bbc4c1bf99", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.CmsKit.Web", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared", |
|||
"name": "AbpAspNetCoreMvcUiThemeSharedModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Common.Application.Contracts", |
|||
"namespace": "Volo.CmsKit", |
|||
"name": "CmsKitCommonApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AutoMapper", |
|||
"namespace": "Volo.Abp.AutoMapper", |
|||
"name": "AbpAutoMapperModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "CmsKitCommonWebModule" |
|||
"name": "CmsKitCommonWebModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,123 @@ |
|||
{ |
|||
"name": "Volo.CmsKit.Domain.Shared", |
|||
"hash": "dd817fe9197c1b28242920e4238da6ee", |
|||
"hash": "b350dc08d218613d7c72fd8613d8c8dd", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.CmsKit", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Validation", |
|||
"namespace": "Volo.Abp.Validation", |
|||
"name": "AbpValidationModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.GlobalFeatures", |
|||
"namespace": "Volo.Abp.GlobalFeatures", |
|||
"name": "AbpGlobalFeaturesModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "CmsKitDomainSharedModule" |
|||
"name": "CmsKitDomainSharedModule", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"valueType": "ToggleStringValueType", |
|||
"defaultValue": "true", |
|||
"displayName": "Enabled blog page", |
|||
"description": "Enable blog page in the application.", |
|||
"isAvailableToHost": true, |
|||
"isVisibleToClients": true, |
|||
"contentType": "feature", |
|||
"name": "CmsKit.BlogEnable", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"valueType": "ToggleStringValueType", |
|||
"defaultValue": "true", |
|||
"displayName": "Enabled commenting", |
|||
"description": "Enable comment in the application.", |
|||
"isAvailableToHost": true, |
|||
"isVisibleToClients": true, |
|||
"contentType": "feature", |
|||
"name": "CmsKit.CommentEnable", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"valueType": "ToggleStringValueType", |
|||
"defaultValue": "true", |
|||
"displayName": "Enabled global resourcing", |
|||
"description": "Enable global resource in the application.", |
|||
"isAvailableToHost": true, |
|||
"isVisibleToClients": true, |
|||
"contentType": "feature", |
|||
"name": "CmsKit.GlobalResourceEnable", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"valueType": "ToggleStringValueType", |
|||
"defaultValue": "true", |
|||
"displayName": "Enabled media", |
|||
"description": "Enable media in the application.", |
|||
"isAvailableToHost": true, |
|||
"isVisibleToClients": true, |
|||
"contentType": "feature", |
|||
"name": "CmsKit.MediaEnable", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"valueType": "ToggleStringValueType", |
|||
"defaultValue": "true", |
|||
"displayName": "Enabled menu", |
|||
"description": "Enable menu in the application.", |
|||
"isAvailableToHost": true, |
|||
"isVisibleToClients": true, |
|||
"contentType": "feature", |
|||
"name": "CmsKit.MenuEnable", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"valueType": "ToggleStringValueType", |
|||
"defaultValue": "true", |
|||
"displayName": "Enabled paging page", |
|||
"description": "Enable paging page in the application.", |
|||
"isAvailableToHost": true, |
|||
"isVisibleToClients": true, |
|||
"contentType": "feature", |
|||
"name": "CmsKit.PageEnable", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"valueType": "ToggleStringValueType", |
|||
"defaultValue": "true", |
|||
"displayName": "Enabled rating", |
|||
"description": "Enable rating in the application.", |
|||
"isAvailableToHost": true, |
|||
"isVisibleToClients": true, |
|||
"contentType": "feature", |
|||
"name": "CmsKit.RatingEnable", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"valueType": "ToggleStringValueType", |
|||
"defaultValue": "true", |
|||
"displayName": "Enabled reaction", |
|||
"description": "Enable reaction in the application.", |
|||
"isAvailableToHost": true, |
|||
"isVisibleToClients": true, |
|||
"contentType": "feature", |
|||
"name": "CmsKit.ReactionEnable", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"valueType": "ToggleStringValueType", |
|||
"defaultValue": "true", |
|||
"displayName": "Enabled taging", |
|||
"description": "Enable taging in the application.", |
|||
"isAvailableToHost": true, |
|||
"isVisibleToClients": true, |
|||
"contentType": "feature", |
|||
"name": "CmsKit.TagEnable", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
File diff suppressed because it is too large
@ -1,18 +1,37 @@ |
|||
{ |
|||
"name": "Volo.CmsKit.EntityFrameworkCore", |
|||
"hash": "b7aab122bf55ecff3063a1b65efe0642", |
|||
"hash": "052e43dff51cc6025796a334e3b6b401", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.CmsKit.EntityFrameworkCore", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Domain", |
|||
"namespace": "Volo.CmsKit", |
|||
"name": "CmsKitDomainModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Users.EntityFrameworkCore", |
|||
"namespace": "Volo.Abp.Users.EntityFrameworkCore", |
|||
"name": "AbpUsersEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.EntityFrameworkCore", |
|||
"namespace": "Volo.Abp.EntityFrameworkCore", |
|||
"name": "AbpEntityFrameworkCoreModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "CmsKitEntityFrameworkCoreModule" |
|||
"name": "CmsKitEntityFrameworkCoreModule", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.CmsKit.EntityFrameworkCore", |
|||
"connectionStringName": "CmsKit", |
|||
"databaseTables": [], |
|||
"contentType": "efCoreDbContext", |
|||
"name": "CmsKitDbContext" |
|||
"name": "CmsKitDbContext", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,29 @@ |
|||
{ |
|||
"name": "Volo.CmsKit.HttpApi.Client", |
|||
"hash": "dac3747019bc31633a80784616bdbe61", |
|||
"hash": "fb5db336838700eca3ae5ecf02fb2971", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.CmsKit", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Admin.HttpApi.Client", |
|||
"namespace": "Volo.CmsKit.Admin", |
|||
"name": "CmsKitAdminHttpApiClientModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Public.HttpApi.Client", |
|||
"namespace": "Volo.CmsKit.Public", |
|||
"name": "CmsKitPublicHttpApiClientModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Application.Contracts", |
|||
"namespace": "Volo.CmsKit", |
|||
"name": "CmsKitApplicationContractsModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "CmsKitHttpApiClientModule" |
|||
"name": "CmsKitHttpApiClientModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,29 @@ |
|||
{ |
|||
"name": "Volo.CmsKit.HttpApi", |
|||
"hash": "35d6b578e63adb4e4fe8876bfdba83c8", |
|||
"hash": "dd7ee0f528b8edd18423f0283ee48771", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.CmsKit", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Admin.HttpApi", |
|||
"namespace": "Volo.CmsKit.Admin", |
|||
"name": "CmsKitAdminHttpApiModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Public.HttpApi", |
|||
"namespace": "Volo.CmsKit.Public", |
|||
"name": "CmsKitPublicHttpApiModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Application.Contracts", |
|||
"namespace": "Volo.CmsKit", |
|||
"name": "CmsKitApplicationContractsModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "CmsKitHttpApiModule" |
|||
"name": "CmsKitHttpApiModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,84 +1,116 @@ |
|||
{ |
|||
"name": "Volo.CmsKit.MongoDB", |
|||
"hash": "6ab237cd16e1bd42d96b93f76b992622", |
|||
"hash": "bb711d0111627c1671c0d6c2c73160e1", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.CmsKit.MongoDB", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Domain", |
|||
"namespace": "Volo.CmsKit", |
|||
"name": "CmsKitDomainModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Users.MongoDB", |
|||
"namespace": "Volo.Abp.Users.MongoDB", |
|||
"name": "AbpUsersMongoDbModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.MongoDB", |
|||
"namespace": "Volo.Abp.MongoDB", |
|||
"name": "AbpMongoDbModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "CmsKitMongoDbModule" |
|||
"name": "CmsKitMongoDbModule", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.CmsKit.MongoDB", |
|||
"connectionStringName": "CmsKit", |
|||
"databaseCollections": [ |
|||
{ |
|||
"entityFullName": "Volo.CmsKit.Users.CmsUser", |
|||
"entityFullName": "Volo.CmsKit.Blogs.Blog", |
|||
"contentType": "databaseCollection", |
|||
"name": "CmsUsers" |
|||
"name": "CmsBlogs", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"entityFullName": "Volo.CmsKit.Reactions.UserReaction", |
|||
"entityFullName": "Volo.CmsKit.Tags.Tag", |
|||
"contentType": "databaseCollection", |
|||
"name": "CmsUserReactions" |
|||
"name": "CmsTags", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"entityFullName": "Volo.CmsKit.Blogs.BlogPost", |
|||
"entityFullName": "Volo.CmsKit.Reactions.UserReaction", |
|||
"contentType": "databaseCollection", |
|||
"name": "CmsBlogPosts" |
|||
"name": "CmsUserReactions", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"entityFullName": "Volo.CmsKit.MediaDescriptors.MediaDescriptor", |
|||
"entityFullName": "Volo.CmsKit.Tags.EntityTag", |
|||
"contentType": "databaseCollection", |
|||
"name": "CmsMediaDescriptors" |
|||
"name": "CmsEntityTags", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"entityFullName": "Volo.CmsKit.Pages.Page", |
|||
"entityFullName": "Volo.CmsKit.Comments.Comment", |
|||
"contentType": "databaseCollection", |
|||
"name": "CmsPages" |
|||
"name": "CmsComments", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"entityFullName": "Volo.CmsKit.Tags.Tag", |
|||
"entityFullName": "Volo.CmsKit.Blogs.BlogPost", |
|||
"contentType": "databaseCollection", |
|||
"name": "CmsTags" |
|||
"name": "CmsBlogPosts", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"entityFullName": "Volo.CmsKit.Blogs.BlogFeature", |
|||
"contentType": "databaseCollection", |
|||
"name": "CmsBlogFeatures" |
|||
"name": "CmsBlogFeatures", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"entityFullName": "Volo.CmsKit.Blogs.Blog", |
|||
"entityFullName": "Volo.CmsKit.Pages.Page", |
|||
"contentType": "databaseCollection", |
|||
"name": "CmsBlogs" |
|||
"name": "CmsPages", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"entityFullName": "Volo.CmsKit.Comments.Comment", |
|||
"entityFullName": "Volo.CmsKit.GlobalResources.GlobalResource", |
|||
"contentType": "databaseCollection", |
|||
"name": "CmsComments" |
|||
"name": "CmsGlobalResources", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"entityFullName": "Volo.CmsKit.GlobalResources.GlobalResource", |
|||
"entityFullName": "Volo.CmsKit.Ratings.Rating", |
|||
"contentType": "databaseCollection", |
|||
"name": "CmsGlobalResources" |
|||
"name": "CmsRatings", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"entityFullName": "Volo.CmsKit.Ratings.Rating", |
|||
"entityFullName": "Volo.CmsKit.MediaDescriptors.MediaDescriptor", |
|||
"contentType": "databaseCollection", |
|||
"name": "CmsRatings" |
|||
"name": "CmsMediaDescriptors", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"entityFullName": "Volo.CmsKit.Menus.MenuItem", |
|||
"contentType": "databaseCollection", |
|||
"name": "CmsMenuItems" |
|||
"name": "CmsMenuItems", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"entityFullName": "Volo.CmsKit.Tags.EntityTag", |
|||
"entityFullName": "Volo.CmsKit.Users.CmsUser", |
|||
"contentType": "databaseCollection", |
|||
"name": "CmsEntityTags" |
|||
"name": "CmsUsers", |
|||
"summary": null |
|||
} |
|||
], |
|||
"contentType": "mongoDbContext", |
|||
"name": "CmsKitMongoDbContext" |
|||
"name": "CmsKitMongoDbContext", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,24 @@ |
|||
{ |
|||
"name": "Volo.CmsKit.Public.Application.Contracts", |
|||
"hash": "dadad9e526e7b82b280e75a06e1456fc", |
|||
"hash": "4f50ee0046fbfc7a37609a9c4408cafc", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.CmsKit.Public", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Common.Application.Contracts", |
|||
"namespace": "Volo.CmsKit", |
|||
"name": "CmsKitCommonApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.EventBus", |
|||
"namespace": "Volo.Abp.EventBus", |
|||
"name": "AbpEventBusModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "CmsKitPublicApplicationContractsModule" |
|||
"name": "CmsKitPublicApplicationContractsModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,74 +1,740 @@ |
|||
{ |
|||
"name": "Volo.CmsKit.Public.Application", |
|||
"hash": "35fc84bf4ee895c703bdf1cf037afb14", |
|||
"hash": "dbc8794dfdbb275a73d410403ce7df09", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.CmsKit.Public", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Common.Application", |
|||
"namespace": "Volo.CmsKit", |
|||
"name": "CmsKitCommonApplicationModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Public.Application.Contracts", |
|||
"namespace": "Volo.CmsKit.Public", |
|||
"name": "CmsKitPublicApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Caching", |
|||
"namespace": "Volo.Abp.Caching", |
|||
"name": "AbpCachingModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "CmsKitPublicApplicationModule" |
|||
"name": "CmsKitPublicApplicationModule", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.CmsKit.Public.Reactions", |
|||
"summary": null, |
|||
"baseClass": { |
|||
"name": "CmsKitPublicAppServiceBase", |
|||
"namespace": "Volo.CmsKit.Public", |
|||
"declaringAssemblyName": "Volo.CmsKit.Public.Application" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
"Volo.CmsKit.Public.Reactions.IReactionPublicAppService" |
|||
{ |
|||
"name": "IApplicationService", |
|||
"namespace": "Volo.Abp.Application.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IRemoteService", |
|||
"namespace": "Volo.Abp", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IAvoidDuplicateCrossCuttingConcerns", |
|||
"namespace": "Volo.Abp.Aspects", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IValidationEnabled", |
|||
"namespace": "Volo.Abp.Validation", |
|||
"declaringAssemblyName": "Volo.Abp.Validation" |
|||
}, |
|||
{ |
|||
"name": "IUnitOfWorkEnabled", |
|||
"namespace": "Volo.Abp.Uow", |
|||
"declaringAssemblyName": "Volo.Abp.Uow" |
|||
}, |
|||
{ |
|||
"name": "IAuditingEnabled", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IGlobalFeatureCheckingEnabled", |
|||
"namespace": "Volo.Abp.GlobalFeatures", |
|||
"declaringAssemblyName": "Volo.Abp.GlobalFeatures" |
|||
}, |
|||
{ |
|||
"name": "ITransientDependency", |
|||
"namespace": "Volo.Abp.DependencyInjection", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IReactionPublicAppService", |
|||
"namespace": "Volo.CmsKit.Public.Reactions", |
|||
"declaringAssemblyName": "Volo.CmsKit.Public.Application.Contracts" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "ListResultDto<ReactionWithSelectionDto>", |
|||
"isAsync": true, |
|||
"name": "GetForSelectionAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "entityType", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "entityId", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": true, |
|||
"name": "CreateAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "entityType", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "entityId", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "reaction", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": true, |
|||
"name": "DeleteAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "entityType", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "entityId", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "reaction", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"contentType": "applicationService", |
|||
"name": "ReactionPublicAppService" |
|||
"name": "ReactionPublicAppService", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.CmsKit.Public.Ratings", |
|||
"summary": null, |
|||
"baseClass": { |
|||
"name": "CmsKitPublicAppServiceBase", |
|||
"namespace": "Volo.CmsKit.Public", |
|||
"declaringAssemblyName": "Volo.CmsKit.Public.Application" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
"Volo.CmsKit.Public.Ratings.IRatingPublicAppService" |
|||
{ |
|||
"name": "IApplicationService", |
|||
"namespace": "Volo.Abp.Application.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IRemoteService", |
|||
"namespace": "Volo.Abp", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IAvoidDuplicateCrossCuttingConcerns", |
|||
"namespace": "Volo.Abp.Aspects", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IValidationEnabled", |
|||
"namespace": "Volo.Abp.Validation", |
|||
"declaringAssemblyName": "Volo.Abp.Validation" |
|||
}, |
|||
{ |
|||
"name": "IUnitOfWorkEnabled", |
|||
"namespace": "Volo.Abp.Uow", |
|||
"declaringAssemblyName": "Volo.Abp.Uow" |
|||
}, |
|||
{ |
|||
"name": "IAuditingEnabled", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IGlobalFeatureCheckingEnabled", |
|||
"namespace": "Volo.Abp.GlobalFeatures", |
|||
"declaringAssemblyName": "Volo.Abp.GlobalFeatures" |
|||
}, |
|||
{ |
|||
"name": "ITransientDependency", |
|||
"namespace": "Volo.Abp.DependencyInjection", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IRatingPublicAppService", |
|||
"namespace": "Volo.CmsKit.Public.Ratings", |
|||
"declaringAssemblyName": "Volo.CmsKit.Public.Application.Contracts" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "RatingDto", |
|||
"isAsync": true, |
|||
"name": "CreateAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "entityType", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "entityId", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "CreateUpdateRatingInput", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": true, |
|||
"name": "DeleteAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "entityType", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "entityId", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "List<RatingWithStarCountDto>", |
|||
"isAsync": true, |
|||
"name": "GetGroupedStarCountsAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "entityType", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "entityId", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"contentType": "applicationService", |
|||
"name": "RatingPublicAppService" |
|||
"name": "RatingPublicAppService", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.CmsKit.Public.Pages", |
|||
"summary": null, |
|||
"baseClass": { |
|||
"name": "CmsKitPublicAppServiceBase", |
|||
"namespace": "Volo.CmsKit.Public", |
|||
"declaringAssemblyName": "Volo.CmsKit.Public.Application" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
"Volo.CmsKit.Public.Pages.IPagePublicAppService" |
|||
{ |
|||
"name": "IApplicationService", |
|||
"namespace": "Volo.Abp.Application.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IRemoteService", |
|||
"namespace": "Volo.Abp", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IAvoidDuplicateCrossCuttingConcerns", |
|||
"namespace": "Volo.Abp.Aspects", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IValidationEnabled", |
|||
"namespace": "Volo.Abp.Validation", |
|||
"declaringAssemblyName": "Volo.Abp.Validation" |
|||
}, |
|||
{ |
|||
"name": "IUnitOfWorkEnabled", |
|||
"namespace": "Volo.Abp.Uow", |
|||
"declaringAssemblyName": "Volo.Abp.Uow" |
|||
}, |
|||
{ |
|||
"name": "IAuditingEnabled", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IGlobalFeatureCheckingEnabled", |
|||
"namespace": "Volo.Abp.GlobalFeatures", |
|||
"declaringAssemblyName": "Volo.Abp.GlobalFeatures" |
|||
}, |
|||
{ |
|||
"name": "ITransientDependency", |
|||
"namespace": "Volo.Abp.DependencyInjection", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IPagePublicAppService", |
|||
"namespace": "Volo.CmsKit.Public.Pages", |
|||
"declaringAssemblyName": "Volo.CmsKit.Public.Application.Contracts" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "PageDto", |
|||
"isAsync": true, |
|||
"name": "FindBySlugAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "slug", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"contentType": "applicationService", |
|||
"name": "PagePublicAppService" |
|||
"name": "PagePublicAppService", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.CmsKit.Public.Menus", |
|||
"summary": null, |
|||
"baseClass": { |
|||
"name": "CmsKitPublicAppServiceBase", |
|||
"namespace": "Volo.CmsKit.Public", |
|||
"declaringAssemblyName": "Volo.CmsKit.Public.Application" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
"Volo.CmsKit.Public.Menus.IMenuItemPublicAppService" |
|||
{ |
|||
"name": "IApplicationService", |
|||
"namespace": "Volo.Abp.Application.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IRemoteService", |
|||
"namespace": "Volo.Abp", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IAvoidDuplicateCrossCuttingConcerns", |
|||
"namespace": "Volo.Abp.Aspects", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IValidationEnabled", |
|||
"namespace": "Volo.Abp.Validation", |
|||
"declaringAssemblyName": "Volo.Abp.Validation" |
|||
}, |
|||
{ |
|||
"name": "IUnitOfWorkEnabled", |
|||
"namespace": "Volo.Abp.Uow", |
|||
"declaringAssemblyName": "Volo.Abp.Uow" |
|||
}, |
|||
{ |
|||
"name": "IAuditingEnabled", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IGlobalFeatureCheckingEnabled", |
|||
"namespace": "Volo.Abp.GlobalFeatures", |
|||
"declaringAssemblyName": "Volo.Abp.GlobalFeatures" |
|||
}, |
|||
{ |
|||
"name": "ITransientDependency", |
|||
"namespace": "Volo.Abp.DependencyInjection", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IMenuItemPublicAppService", |
|||
"namespace": "Volo.CmsKit.Public.Menus", |
|||
"declaringAssemblyName": "Volo.CmsKit.Public.Application.Contracts" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "List<MenuItemDto>", |
|||
"isAsync": true, |
|||
"name": "GetListAsync", |
|||
"summary": null, |
|||
"parameters": [] |
|||
} |
|||
], |
|||
"contentType": "applicationService", |
|||
"name": "MenuItemPublicAppService" |
|||
"name": "MenuItemPublicAppService", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.CmsKit.Public.GlobalResources", |
|||
"summary": null, |
|||
"baseClass": { |
|||
"name": "ApplicationService", |
|||
"namespace": "Volo.Abp.Application.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
"Volo.CmsKit.Public.GlobalResources.IGlobalResourcePublicAppService" |
|||
{ |
|||
"name": "IApplicationService", |
|||
"namespace": "Volo.Abp.Application.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IRemoteService", |
|||
"namespace": "Volo.Abp", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IAvoidDuplicateCrossCuttingConcerns", |
|||
"namespace": "Volo.Abp.Aspects", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IValidationEnabled", |
|||
"namespace": "Volo.Abp.Validation", |
|||
"declaringAssemblyName": "Volo.Abp.Validation" |
|||
}, |
|||
{ |
|||
"name": "IUnitOfWorkEnabled", |
|||
"namespace": "Volo.Abp.Uow", |
|||
"declaringAssemblyName": "Volo.Abp.Uow" |
|||
}, |
|||
{ |
|||
"name": "IAuditingEnabled", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IGlobalFeatureCheckingEnabled", |
|||
"namespace": "Volo.Abp.GlobalFeatures", |
|||
"declaringAssemblyName": "Volo.Abp.GlobalFeatures" |
|||
}, |
|||
{ |
|||
"name": "ITransientDependency", |
|||
"namespace": "Volo.Abp.DependencyInjection", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IGlobalResourcePublicAppService", |
|||
"namespace": "Volo.CmsKit.Public.GlobalResources", |
|||
"declaringAssemblyName": "Volo.CmsKit.Public.Application.Contracts" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "GlobalResourceDto", |
|||
"isAsync": true, |
|||
"name": "GetGlobalScriptAsync", |
|||
"summary": null, |
|||
"parameters": [] |
|||
}, |
|||
{ |
|||
"returnType": "GlobalResourceDto", |
|||
"isAsync": true, |
|||
"name": "GetGlobalStyleAsync", |
|||
"summary": null, |
|||
"parameters": [] |
|||
} |
|||
], |
|||
"contentType": "applicationService", |
|||
"name": "GlobalResourcePublicAppService" |
|||
"name": "GlobalResourcePublicAppService", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.CmsKit.Public.Comments", |
|||
"summary": null, |
|||
"baseClass": { |
|||
"name": "CmsKitPublicAppServiceBase", |
|||
"namespace": "Volo.CmsKit.Public", |
|||
"declaringAssemblyName": "Volo.CmsKit.Public.Application" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
"Volo.CmsKit.Public.Comments.ICommentPublicAppService" |
|||
{ |
|||
"name": "IApplicationService", |
|||
"namespace": "Volo.Abp.Application.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IRemoteService", |
|||
"namespace": "Volo.Abp", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IAvoidDuplicateCrossCuttingConcerns", |
|||
"namespace": "Volo.Abp.Aspects", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IValidationEnabled", |
|||
"namespace": "Volo.Abp.Validation", |
|||
"declaringAssemblyName": "Volo.Abp.Validation" |
|||
}, |
|||
{ |
|||
"name": "IUnitOfWorkEnabled", |
|||
"namespace": "Volo.Abp.Uow", |
|||
"declaringAssemblyName": "Volo.Abp.Uow" |
|||
}, |
|||
{ |
|||
"name": "IAuditingEnabled", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IGlobalFeatureCheckingEnabled", |
|||
"namespace": "Volo.Abp.GlobalFeatures", |
|||
"declaringAssemblyName": "Volo.Abp.GlobalFeatures" |
|||
}, |
|||
{ |
|||
"name": "ITransientDependency", |
|||
"namespace": "Volo.Abp.DependencyInjection", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "ICommentPublicAppService", |
|||
"namespace": "Volo.CmsKit.Public.Comments", |
|||
"declaringAssemblyName": "Volo.CmsKit.Public.Application.Contracts" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "ListResultDto<CommentWithDetailsDto>", |
|||
"isAsync": true, |
|||
"name": "GetListAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "entityType", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "entityId", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "CommentDto", |
|||
"isAsync": true, |
|||
"name": "CreateAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "entityType", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "entityId", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "CreateCommentInput", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "CommentDto", |
|||
"isAsync": true, |
|||
"name": "UpdateAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Guid", |
|||
"name": "id", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "UpdateCommentInput", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": true, |
|||
"name": "DeleteAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Guid", |
|||
"name": "id", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"contentType": "applicationService", |
|||
"name": "CommentPublicAppService" |
|||
"name": "CommentPublicAppService", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.CmsKit.Public.Blogs", |
|||
"summary": null, |
|||
"baseClass": { |
|||
"name": "CmsKitPublicAppServiceBase", |
|||
"namespace": "Volo.CmsKit.Public", |
|||
"declaringAssemblyName": "Volo.CmsKit.Public.Application" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
"Volo.CmsKit.Public.Blogs.IBlogPostPublicAppService" |
|||
{ |
|||
"name": "IApplicationService", |
|||
"namespace": "Volo.Abp.Application.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IRemoteService", |
|||
"namespace": "Volo.Abp", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IAvoidDuplicateCrossCuttingConcerns", |
|||
"namespace": "Volo.Abp.Aspects", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IValidationEnabled", |
|||
"namespace": "Volo.Abp.Validation", |
|||
"declaringAssemblyName": "Volo.Abp.Validation" |
|||
}, |
|||
{ |
|||
"name": "IUnitOfWorkEnabled", |
|||
"namespace": "Volo.Abp.Uow", |
|||
"declaringAssemblyName": "Volo.Abp.Uow" |
|||
}, |
|||
{ |
|||
"name": "IAuditingEnabled", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IGlobalFeatureCheckingEnabled", |
|||
"namespace": "Volo.Abp.GlobalFeatures", |
|||
"declaringAssemblyName": "Volo.Abp.GlobalFeatures" |
|||
}, |
|||
{ |
|||
"name": "ITransientDependency", |
|||
"namespace": "Volo.Abp.DependencyInjection", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IBlogPostPublicAppService", |
|||
"namespace": "Volo.CmsKit.Public.Blogs", |
|||
"declaringAssemblyName": "Volo.CmsKit.Public.Application.Contracts" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "BlogPostCommonDto", |
|||
"isAsync": true, |
|||
"name": "GetAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "blogSlug", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "blogPostSlug", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "PagedResultDto<BlogPostCommonDto>", |
|||
"isAsync": true, |
|||
"name": "GetListAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "blogSlug", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "BlogPostGetListInput", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "PagedResultDto<CmsUserDto>", |
|||
"isAsync": true, |
|||
"name": "GetAuthorsHasBlogPostsAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "BlogPostFilteredPagedAndSortedResultRequestDto", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "CmsUserDto", |
|||
"isAsync": true, |
|||
"name": "GetAuthorHasBlogPostAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Guid", |
|||
"name": "id", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"contentType": "applicationService", |
|||
"name": "BlogPostPublicAppService" |
|||
"name": "BlogPostPublicAppService", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,24 @@ |
|||
{ |
|||
"name": "Volo.CmsKit.Public.HttpApi.Client", |
|||
"hash": "60549438786408497e188a1626a25bfb", |
|||
"hash": "e7a6f39a21b56449aa622bceefcd697a", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.CmsKit.Public", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Public.Application.Contracts", |
|||
"namespace": "Volo.CmsKit.Public", |
|||
"name": "CmsKitPublicApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Common.HttpApi.Client", |
|||
"namespace": "Volo.CmsKit", |
|||
"name": "CmsKitCommonHttpApiClientModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "CmsKitPublicHttpApiClientModule" |
|||
"name": "CmsKitPublicHttpApiClientModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,24 @@ |
|||
{ |
|||
"name": "Volo.CmsKit.Public.HttpApi", |
|||
"hash": "8ec175d273c21b4de197b0085c3cddb2", |
|||
"hash": "6eafc7f5a7813222e944c9e3dd7415c4", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.CmsKit.Public", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Public.Application.Contracts", |
|||
"namespace": "Volo.CmsKit.Public", |
|||
"name": "CmsKitPublicApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Common.HttpApi", |
|||
"namespace": "Volo.CmsKit", |
|||
"name": "CmsKitCommonHttpApiModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "CmsKitPublicHttpApiModule" |
|||
"name": "CmsKitPublicHttpApiModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,24 @@ |
|||
{ |
|||
"name": "Volo.CmsKit.Public.Web", |
|||
"hash": "c7feb0964cd3dafb92e2f73ac8f944b4", |
|||
"hash": "5db66e583dd5eabb1bf45b75013dc7bb", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.CmsKit.Public.Web", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Public.Application.Contracts", |
|||
"namespace": "Volo.CmsKit.Public", |
|||
"name": "CmsKitPublicApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Common.Web", |
|||
"namespace": "Volo.CmsKit.Web", |
|||
"name": "CmsKitCommonWebModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "CmsKitPublicWebModule" |
|||
"name": "CmsKitPublicWebModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,29 @@ |
|||
{ |
|||
"name": "Volo.CmsKit.Web", |
|||
"hash": "b852b82969c272b32a42d6666a7ce9f0", |
|||
"hash": "3f1557c8c666c402e90ecf079e323cdd", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.CmsKit.Web", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Public.Web", |
|||
"namespace": "Volo.CmsKit.Public.Web", |
|||
"name": "CmsKitPublicWebModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Admin.Web", |
|||
"namespace": "Volo.CmsKit.Admin.Web", |
|||
"name": "CmsKitAdminWebModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.CmsKit.Application.Contracts", |
|||
"namespace": "Volo.CmsKit", |
|||
"name": "CmsKitApplicationContractsModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "CmsKitWebModule" |
|||
"name": "CmsKitWebModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,18 +1,47 @@ |
|||
{ |
|||
"name": "VoloDocs.EntityFrameworkCore", |
|||
"hash": "8ac808bc478d207d2d1ed672d5f16244", |
|||
"hash": "812957e8869f2799e209f3ee8c080b03", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "VoloDocs.EntityFrameworkCore", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Docs.EntityFrameworkCore", |
|||
"namespace": "Volo.Docs.EntityFrameworkCore", |
|||
"name": "DocsEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Identity.EntityFrameworkCore", |
|||
"namespace": "Volo.Abp.Identity.EntityFrameworkCore", |
|||
"name": "AbpIdentityEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.PermissionManagement.EntityFrameworkCore", |
|||
"namespace": "Volo.Abp.PermissionManagement.EntityFrameworkCore", |
|||
"name": "AbpPermissionManagementEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.SettingManagement.EntityFrameworkCore", |
|||
"namespace": "Volo.Abp.SettingManagement.EntityFrameworkCore", |
|||
"name": "AbpSettingManagementEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.EntityFrameworkCore.SqlServer", |
|||
"namespace": "Volo.Abp.EntityFrameworkCore.SqlServer", |
|||
"name": "AbpEntityFrameworkCoreSqlServerModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "VoloDocsEntityFrameworkCoreModule" |
|||
"name": "VoloDocsEntityFrameworkCoreModule", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "VoloDocs.EntityFrameworkCore", |
|||
"connectionStringName": null, |
|||
"databaseTables": [], |
|||
"contentType": "efCoreDbContext", |
|||
"name": "VoloDocsDbContext" |
|||
"name": "VoloDocsDbContext", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -0,0 +1,19 @@ |
|||
{ |
|||
"name": "VoloDocs.Migrator", |
|||
"hash": "0ac8c1eb9d9d1c7a53ace043889b10f7", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "VoloDocs.Migrator", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "VoloDocs.EntityFrameworkCore", |
|||
"namespace": "VoloDocs.EntityFrameworkCore", |
|||
"name": "VoloDocsEntityFrameworkCoreModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "VoloDocsMigratorModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -0,0 +1,104 @@ |
|||
{ |
|||
"name": "VoloDocs.Web", |
|||
"hash": "306d9528459a7cf58cf1526c6fe8724d", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "VoloDocs.Web", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Docs.Web", |
|||
"namespace": "Volo.Docs", |
|||
"name": "DocsWebModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Docs.Admin.Web", |
|||
"namespace": "Volo.Docs.Admin", |
|||
"name": "DocsAdminWebModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Docs.Application", |
|||
"namespace": "Volo.Docs", |
|||
"name": "DocsApplicationModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Docs.HttpApi", |
|||
"namespace": "Volo.Docs", |
|||
"name": "DocsHttpApiModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Docs.Admin.Application", |
|||
"namespace": "Volo.Docs.Admin", |
|||
"name": "DocsAdminApplicationModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Docs.Admin.HttpApi", |
|||
"namespace": "Volo.Docs.Admin", |
|||
"name": "DocsAdminHttpApiModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "VoloDocs.EntityFrameworkCore", |
|||
"namespace": "VoloDocs.EntityFrameworkCore", |
|||
"name": "VoloDocsEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Autofac", |
|||
"namespace": "Volo.Abp.Autofac", |
|||
"name": "AbpAutofacModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Account.Web", |
|||
"namespace": "Volo.Abp.Account.Web", |
|||
"name": "AbpAccountWebModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Account.Application", |
|||
"namespace": "Volo.Abp.Account", |
|||
"name": "AbpAccountApplicationModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Account.HttpApi", |
|||
"namespace": "Volo.Abp.Account", |
|||
"name": "AbpAccountHttpApiModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Identity.Web", |
|||
"namespace": "Volo.Abp.Identity.Web", |
|||
"name": "AbpIdentityWebModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Identity.Application", |
|||
"namespace": "Volo.Abp.Identity", |
|||
"name": "AbpIdentityApplicationModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Identity.HttpApi", |
|||
"namespace": "Volo.Abp.Identity", |
|||
"name": "AbpIdentityHttpApiModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.PermissionManagement.Domain.Identity", |
|||
"namespace": "Volo.Abp.PermissionManagement.Identity", |
|||
"name": "AbpPermissionManagementDomainIdentityModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.PermissionManagement.Application", |
|||
"namespace": "Volo.Abp.PermissionManagement", |
|||
"name": "AbpPermissionManagementApplicationModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.PermissionManagement.HttpApi", |
|||
"namespace": "Volo.Abp.PermissionManagement.HttpApi", |
|||
"name": "AbpPermissionManagementHttpApiModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic", |
|||
"name": "AbpAspNetCoreMvcUiBasicThemeModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "VoloDocsWebModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,41 +1,64 @@ |
|||
{ |
|||
"name": "Volo.Docs.Admin.Application.Contracts", |
|||
"hash": "8e78a71db249bde834148637edf070b1", |
|||
"hash": "095b47a140f09e91f022f81e715b4976", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Docs.Admin", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Docs.Domain.Shared", |
|||
"namespace": "Volo.Docs", |
|||
"name": "DocsDomainSharedModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application.Contracts", |
|||
"namespace": "Volo.Abp.Application", |
|||
"name": "AbpDddApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Authorization.Abstractions", |
|||
"namespace": "Volo.Abp.Authorization", |
|||
"name": "AbpAuthorizationAbstractionsModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "DocsAdminApplicationContractsModule" |
|||
"name": "DocsAdminApplicationContractsModule", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Projects", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "Docs.Admin.Projects" |
|||
"name": "Docs.Admin.Projects", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Edit", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "Docs.Admin.Projects.Update" |
|||
"name": "Docs.Admin.Projects.Update", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Delete", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "Docs.Admin.Projects.Delete" |
|||
"name": "Docs.Admin.Projects.Delete", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Create", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "Docs.Admin.Projects.Create" |
|||
"name": "Docs.Admin.Projects.Create", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"displayName": "Documents", |
|||
"isEnabled": true, |
|||
"contentType": "permission", |
|||
"name": "Docs.Admin.Documents" |
|||
"name": "Docs.Admin.Documents", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,29 +1,341 @@ |
|||
{ |
|||
"name": "Volo.Docs.Admin.Application", |
|||
"hash": "1ebc44195de6a5460ff52b8b04113eda", |
|||
"hash": "9d08204691900bbc318f2d61747d961f", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Docs.Admin", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Docs.Domain", |
|||
"namespace": "Volo.Docs", |
|||
"name": "DocsDomainModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Docs.Admin.Application.Contracts", |
|||
"namespace": "Volo.Docs.Admin", |
|||
"name": "DocsAdminApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Caching", |
|||
"namespace": "Volo.Abp.Caching", |
|||
"name": "AbpCachingModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AutoMapper", |
|||
"namespace": "Volo.Abp.AutoMapper", |
|||
"name": "AbpAutoMapperModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application", |
|||
"namespace": "Volo.Abp.Application", |
|||
"name": "AbpDddApplicationModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "DocsAdminApplicationModule" |
|||
"name": "DocsAdminApplicationModule", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Docs.Admin.Projects", |
|||
"summary": null, |
|||
"baseClass": { |
|||
"name": "ApplicationService", |
|||
"namespace": "Volo.Abp.Application.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
"Volo.Docs.Admin.Projects.IProjectAdminAppService" |
|||
{ |
|||
"name": "IApplicationService", |
|||
"namespace": "Volo.Abp.Application.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IRemoteService", |
|||
"namespace": "Volo.Abp", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IAvoidDuplicateCrossCuttingConcerns", |
|||
"namespace": "Volo.Abp.Aspects", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IValidationEnabled", |
|||
"namespace": "Volo.Abp.Validation", |
|||
"declaringAssemblyName": "Volo.Abp.Validation" |
|||
}, |
|||
{ |
|||
"name": "IUnitOfWorkEnabled", |
|||
"namespace": "Volo.Abp.Uow", |
|||
"declaringAssemblyName": "Volo.Abp.Uow" |
|||
}, |
|||
{ |
|||
"name": "IAuditingEnabled", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IGlobalFeatureCheckingEnabled", |
|||
"namespace": "Volo.Abp.GlobalFeatures", |
|||
"declaringAssemblyName": "Volo.Abp.GlobalFeatures" |
|||
}, |
|||
{ |
|||
"name": "ITransientDependency", |
|||
"namespace": "Volo.Abp.DependencyInjection", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IProjectAdminAppService", |
|||
"namespace": "Volo.Docs.Admin.Projects", |
|||
"declaringAssemblyName": "Volo.Docs.Admin.Application.Contracts" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "PagedResultDto<ProjectDto>", |
|||
"isAsync": true, |
|||
"name": "GetListAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "PagedAndSortedResultRequestDto", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "ProjectDto", |
|||
"isAsync": true, |
|||
"name": "GetAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Guid", |
|||
"name": "id", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "ProjectDto", |
|||
"isAsync": true, |
|||
"name": "CreateAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "CreateProjectDto", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "ProjectDto", |
|||
"isAsync": true, |
|||
"name": "UpdateAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Guid", |
|||
"name": "id", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "UpdateProjectDto", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": true, |
|||
"name": "DeleteAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Guid", |
|||
"name": "id", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": true, |
|||
"name": "ReindexAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "ReindexInput", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": true, |
|||
"name": "ReindexAllAsync", |
|||
"summary": null, |
|||
"parameters": [] |
|||
}, |
|||
{ |
|||
"returnType": "List<ProjectWithoutDetailsDto>", |
|||
"isAsync": true, |
|||
"name": "GetListWithoutDetailsAsync", |
|||
"summary": null, |
|||
"parameters": [] |
|||
} |
|||
], |
|||
"contentType": "applicationService", |
|||
"name": "ProjectAdminAppService" |
|||
"name": "ProjectAdminAppService", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Docs.Admin.Documents", |
|||
"summary": null, |
|||
"baseClass": { |
|||
"name": "ApplicationService", |
|||
"namespace": "Volo.Abp.Application.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
"Volo.Docs.Admin.Documents.IDocumentAdminAppService" |
|||
{ |
|||
"name": "IApplicationService", |
|||
"namespace": "Volo.Abp.Application.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IRemoteService", |
|||
"namespace": "Volo.Abp", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IAvoidDuplicateCrossCuttingConcerns", |
|||
"namespace": "Volo.Abp.Aspects", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IValidationEnabled", |
|||
"namespace": "Volo.Abp.Validation", |
|||
"declaringAssemblyName": "Volo.Abp.Validation" |
|||
}, |
|||
{ |
|||
"name": "IUnitOfWorkEnabled", |
|||
"namespace": "Volo.Abp.Uow", |
|||
"declaringAssemblyName": "Volo.Abp.Uow" |
|||
}, |
|||
{ |
|||
"name": "IAuditingEnabled", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IGlobalFeatureCheckingEnabled", |
|||
"namespace": "Volo.Abp.GlobalFeatures", |
|||
"declaringAssemblyName": "Volo.Abp.GlobalFeatures" |
|||
}, |
|||
{ |
|||
"name": "ITransientDependency", |
|||
"namespace": "Volo.Abp.DependencyInjection", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IDocumentAdminAppService", |
|||
"namespace": "Volo.Docs.Admin.Documents", |
|||
"declaringAssemblyName": "Volo.Docs.Admin.Application.Contracts" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": true, |
|||
"name": "ClearCacheAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "ClearCacheInput", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": true, |
|||
"name": "PullAllAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "PullAllDocumentInput", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": true, |
|||
"name": "PullAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "PullDocumentInput", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "PagedResultDto<DocumentDto>", |
|||
"isAsync": true, |
|||
"name": "GetAllAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "GetAllInput", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": true, |
|||
"name": "RemoveFromCacheAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Guid", |
|||
"name": "documentId", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": true, |
|||
"name": "ReindexAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Guid", |
|||
"name": "documentId", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "List<DocumentInfoDto>", |
|||
"isAsync": true, |
|||
"name": "GetFilterItemsAsync", |
|||
"summary": null, |
|||
"parameters": [] |
|||
} |
|||
], |
|||
"contentType": "applicationService", |
|||
"name": "DocumentAdminAppService" |
|||
"name": "DocumentAdminAppService", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,24 @@ |
|||
{ |
|||
"name": "Volo.Docs.Admin.HttpApi.Client", |
|||
"hash": "b89a21854479861a94321c9b9b14c1ef", |
|||
"hash": "55aeaaeb4ae81425c9f86d2825fe77d5", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Docs.Admin", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Docs.Admin.Application.Contracts", |
|||
"namespace": "Volo.Docs.Admin", |
|||
"name": "DocsAdminApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Http.Client", |
|||
"namespace": "Volo.Abp.Http.Client", |
|||
"name": "AbpHttpClientModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "DocsAdminHttpApiClientModule" |
|||
"name": "DocsAdminHttpApiClientModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,24 @@ |
|||
{ |
|||
"name": "Volo.Docs.Admin.HttpApi", |
|||
"hash": "2ce1eb9b94903de99e5e94c61fecd09d", |
|||
"hash": "997534eb970c93f92308c5a1df7185cf", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Docs.Admin", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Docs.Admin.Application.Contracts", |
|||
"namespace": "Volo.Docs.Admin", |
|||
"name": "DocsAdminApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc", |
|||
"name": "AbpAspNetCoreMvcModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "DocsAdminHttpApiModule" |
|||
"name": "DocsAdminHttpApiModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,24 @@ |
|||
{ |
|||
"name": "Volo.Docs.Admin.Web", |
|||
"hash": "9bf873547c3d7a73d22281db34ccb755", |
|||
"hash": "dd7cce7e2fd63c55998fa4c2030c5cd6", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Docs.Admin", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Docs.Admin.Application.Contracts", |
|||
"namespace": "Volo.Docs.Admin", |
|||
"name": "DocsAdminApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc.UI.Bootstrap", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc.UI.Bootstrap", |
|||
"name": "AbpAspNetCoreMvcUiBootstrapModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "DocsAdminWebModule" |
|||
"name": "DocsAdminWebModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,24 @@ |
|||
{ |
|||
"name": "Volo.Docs.Application.Contracts", |
|||
"hash": "262e4f1684408074bc48fd8b516291ac", |
|||
"hash": "4911fb87fa8e3581c4827d6348d925ba", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Docs", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Docs.Domain.Shared", |
|||
"namespace": "Volo.Docs", |
|||
"name": "DocsDomainSharedModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application.Contracts", |
|||
"namespace": "Volo.Abp.Application", |
|||
"name": "AbpDddApplicationContractsModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "DocsApplicationContractsModule" |
|||
"name": "DocsApplicationContractsModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,29 +1,326 @@ |
|||
{ |
|||
"name": "Volo.Docs.Application", |
|||
"hash": "87e3d3c4ba832643880025f927061542", |
|||
"hash": "6577c5c6152a502ca398540df8cd3a62", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Docs", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Docs.Domain", |
|||
"namespace": "Volo.Docs", |
|||
"name": "DocsDomainModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Docs.Application.Contracts", |
|||
"namespace": "Volo.Docs", |
|||
"name": "DocsApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Caching", |
|||
"namespace": "Volo.Abp.Caching", |
|||
"name": "AbpCachingModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AutoMapper", |
|||
"namespace": "Volo.Abp.AutoMapper", |
|||
"name": "AbpAutoMapperModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application", |
|||
"namespace": "Volo.Abp.Application", |
|||
"name": "AbpDddApplicationModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "DocsApplicationModule" |
|||
"name": "DocsApplicationModule", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Docs.Projects", |
|||
"summary": null, |
|||
"baseClass": { |
|||
"name": "DocsAppServiceBase", |
|||
"namespace": "Volo.Docs", |
|||
"declaringAssemblyName": "Volo.Docs.Application" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
"Volo.Docs.Projects.IProjectAppService" |
|||
{ |
|||
"name": "IApplicationService", |
|||
"namespace": "Volo.Abp.Application.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IRemoteService", |
|||
"namespace": "Volo.Abp", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IAvoidDuplicateCrossCuttingConcerns", |
|||
"namespace": "Volo.Abp.Aspects", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IValidationEnabled", |
|||
"namespace": "Volo.Abp.Validation", |
|||
"declaringAssemblyName": "Volo.Abp.Validation" |
|||
}, |
|||
{ |
|||
"name": "IUnitOfWorkEnabled", |
|||
"namespace": "Volo.Abp.Uow", |
|||
"declaringAssemblyName": "Volo.Abp.Uow" |
|||
}, |
|||
{ |
|||
"name": "IAuditingEnabled", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IGlobalFeatureCheckingEnabled", |
|||
"namespace": "Volo.Abp.GlobalFeatures", |
|||
"declaringAssemblyName": "Volo.Abp.GlobalFeatures" |
|||
}, |
|||
{ |
|||
"name": "ITransientDependency", |
|||
"namespace": "Volo.Abp.DependencyInjection", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IProjectAppService", |
|||
"namespace": "Volo.Docs.Projects", |
|||
"declaringAssemblyName": "Volo.Docs.Application.Contracts" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "ListResultDto<ProjectDto>", |
|||
"isAsync": true, |
|||
"name": "GetListAsync", |
|||
"summary": null, |
|||
"parameters": [] |
|||
}, |
|||
{ |
|||
"returnType": "ProjectDto", |
|||
"isAsync": true, |
|||
"name": "GetAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "shortName", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "ListResultDto<VersionInfoDto>", |
|||
"isAsync": true, |
|||
"name": "GetVersionsAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "shortName", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "LanguageConfig", |
|||
"isAsync": true, |
|||
"name": "GetLanguageListAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "shortName", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "version", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "String", |
|||
"isAsync": true, |
|||
"name": "GetDefaultLanguageCodeAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "shortName", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "version", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"contentType": "applicationService", |
|||
"name": "ProjectAppService" |
|||
"name": "ProjectAppService", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Docs.Documents", |
|||
"summary": null, |
|||
"baseClass": { |
|||
"name": "DocsAppServiceBase", |
|||
"namespace": "Volo.Docs", |
|||
"declaringAssemblyName": "Volo.Docs.Application" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
"Volo.Docs.Documents.IDocumentAppService" |
|||
{ |
|||
"name": "IApplicationService", |
|||
"namespace": "Volo.Abp.Application.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Application.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IRemoteService", |
|||
"namespace": "Volo.Abp", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IAvoidDuplicateCrossCuttingConcerns", |
|||
"namespace": "Volo.Abp.Aspects", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IValidationEnabled", |
|||
"namespace": "Volo.Abp.Validation", |
|||
"declaringAssemblyName": "Volo.Abp.Validation" |
|||
}, |
|||
{ |
|||
"name": "IUnitOfWorkEnabled", |
|||
"namespace": "Volo.Abp.Uow", |
|||
"declaringAssemblyName": "Volo.Abp.Uow" |
|||
}, |
|||
{ |
|||
"name": "IAuditingEnabled", |
|||
"namespace": "Volo.Abp.Auditing", |
|||
"declaringAssemblyName": "Volo.Abp.Auditing.Contracts" |
|||
}, |
|||
{ |
|||
"name": "IGlobalFeatureCheckingEnabled", |
|||
"namespace": "Volo.Abp.GlobalFeatures", |
|||
"declaringAssemblyName": "Volo.Abp.GlobalFeatures" |
|||
}, |
|||
{ |
|||
"name": "ITransientDependency", |
|||
"namespace": "Volo.Abp.DependencyInjection", |
|||
"declaringAssemblyName": "Volo.Abp.Core" |
|||
}, |
|||
{ |
|||
"name": "IDocumentAppService", |
|||
"namespace": "Volo.Docs.Documents", |
|||
"declaringAssemblyName": "Volo.Docs.Application.Contracts" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "DocumentWithDetailsDto", |
|||
"isAsync": true, |
|||
"name": "GetAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "GetDocumentInput", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "DocumentWithDetailsDto", |
|||
"isAsync": true, |
|||
"name": "GetDefaultAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "GetDefaultDocumentInput", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "NavigationNode", |
|||
"isAsync": true, |
|||
"name": "GetNavigationAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "GetNavigationDocumentInput", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "DocumentResourceDto", |
|||
"isAsync": true, |
|||
"name": "GetResourceAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "GetDocumentResourceInput", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "List<DocumentSearchOutput>", |
|||
"isAsync": true, |
|||
"name": "SearchAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "DocumentSearchInput", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Boolean", |
|||
"isAsync": true, |
|||
"name": "FullSearchEnabledAsync", |
|||
"summary": null, |
|||
"parameters": [] |
|||
}, |
|||
{ |
|||
"returnType": "List<String>", |
|||
"isAsync": true, |
|||
"name": "GetUrlsAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "prefix", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "DocumentParametersDto", |
|||
"isAsync": true, |
|||
"name": "GetParametersAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "GetParametersDocumentInput", |
|||
"name": "input", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"contentType": "applicationService", |
|||
"name": "DocumentAppService" |
|||
"name": "DocumentAppService", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,19 @@ |
|||
{ |
|||
"name": "Volo.Docs.Domain.Shared", |
|||
"hash": "55aba204a9318469c1df9a9a68a29f86", |
|||
"hash": "927ef52146cb0f41e0a1b241766304c1", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Docs", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Localization", |
|||
"namespace": "Volo.Abp.Localization", |
|||
"name": "AbpLocalizationModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "DocsDomainSharedModule" |
|||
"name": "DocsDomainSharedModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,87 +1,720 @@ |
|||
{ |
|||
"name": "Volo.Docs.Domain", |
|||
"hash": "f162d16971e9084446f20fc58b84586d", |
|||
"hash": "94bd8ae44eff07551b074284a39f0452", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Docs", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Docs.Domain.Shared", |
|||
"namespace": "Volo.Docs", |
|||
"name": "DocsDomainSharedModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain", |
|||
"namespace": "Volo.Abp.Domain", |
|||
"name": "AbpDddDomainModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AutoMapper", |
|||
"namespace": "Volo.Abp.AutoMapper", |
|||
"name": "AbpAutoMapperModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "DocsDomainModule" |
|||
"name": "DocsDomainModule", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"baseClass": { |
|||
"name": "AggregateRoot<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
{ |
|||
"name": "IEntity", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IEntity<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IAggregateRoot<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IAggregateRoot", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IGeneratesDomainEvents", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IHasExtraProperties", |
|||
"namespace": "Volo.Abp.Data", |
|||
"declaringAssemblyName": "Volo.Abp.ObjectExtending" |
|||
}, |
|||
{ |
|||
"name": "IHasConcurrencyStamp", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Data" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": false, |
|||
"name": "SetName", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "name", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": false, |
|||
"name": "SetFormat", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "format", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": false, |
|||
"name": "SetNavigationDocumentName", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "navigationDocumentName", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": false, |
|||
"name": "SetParametersDocumentName", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "parametersDocumentName", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": false, |
|||
"name": "SetDefaultDocumentName", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "defaultDocumentName", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"namespace": "Volo.Docs.Projects", |
|||
"primaryKeyType": "Guid", |
|||
"summary": null, |
|||
"collectionProperties": [], |
|||
"navigationProperties": [], |
|||
"collectionProperties": {}, |
|||
"navigationProperties": {}, |
|||
"contentType": "aggregateRoot", |
|||
"name": "Project" |
|||
"name": "Project", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"baseClass": { |
|||
"name": "AggregateRoot<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
"implementingInterfaces": [ |
|||
{ |
|||
"name": "IEntity", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IEntity<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IAggregateRoot<Guid>", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IAggregateRoot", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IGeneratesDomainEvents", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
{ |
|||
"name": "IHasExtraProperties", |
|||
"namespace": "Volo.Abp.Data", |
|||
"declaringAssemblyName": "Volo.Abp.ObjectExtending" |
|||
}, |
|||
{ |
|||
"name": "IHasConcurrencyStamp", |
|||
"namespace": "Volo.Abp.Domain.Entities", |
|||
"declaringAssemblyName": "Volo.Abp.Data" |
|||
} |
|||
], |
|||
"methods": [ |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": false, |
|||
"name": "AddContributor", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "username", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "userProfileUrl", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "avatarUrl", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "Int32", |
|||
"name": "commitCount", |
|||
"isOptional": true |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": false, |
|||
"name": "RemoveAllContributors", |
|||
"summary": null, |
|||
"parameters": [] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": false, |
|||
"name": "RemoveContributor", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "username", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "userProfileUrl", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "avatarUrl", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "DocumentContributor", |
|||
"isAsync": false, |
|||
"name": "FindContributor", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "username", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "userProfileUrl", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "avatarUrl", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"namespace": "Volo.Docs.Documents", |
|||
"primaryKeyType": "Guid", |
|||
"summary": null, |
|||
"collectionProperties": [ |
|||
"Volo.Docs.Documents.DocumentContributor" |
|||
], |
|||
"navigationProperties": [], |
|||
"collectionProperties": { |
|||
"contributors": { |
|||
"name": "DocumentContributor", |
|||
"namespace": "Volo.Docs.Documents", |
|||
"declaringAssemblyName": "Volo.Docs.Domain" |
|||
} |
|||
}, |
|||
"navigationProperties": {}, |
|||
"contentType": "aggregateRoot", |
|||
"name": "Document" |
|||
"name": "Document", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Docs.GitHub.Documents", |
|||
"summary": null, |
|||
"baseClass": { |
|||
"name": "DomainService", |
|||
"namespace": "Volo.Abp.Domain.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
"methods": [ |
|||
{ |
|||
"returnType": "Document", |
|||
"isAsync": true, |
|||
"name": "GetDocumentAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Project", |
|||
"name": "project", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "documentName", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "languageCode", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "version", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "Nullable<DateTime>", |
|||
"name": "lastKnownSignificantUpdateTime", |
|||
"isOptional": true |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "List<VersionInfo>", |
|||
"isAsync": true, |
|||
"name": "GetVersionsAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Project", |
|||
"name": "project", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "DocumentResource", |
|||
"isAsync": true, |
|||
"name": "GetResource", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Project", |
|||
"name": "project", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "resourceName", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "languageCode", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "version", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "LanguageConfig", |
|||
"isAsync": true, |
|||
"name": "GetLanguageListAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Project", |
|||
"name": "project", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "version", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"contentType": "domainService", |
|||
"name": "GithubDocumentSource" |
|||
"name": "GithubDocumentSource", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Docs.GitHub.Documents", |
|||
"summary": null, |
|||
"baseClass": { |
|||
"name": "DomainService", |
|||
"namespace": "Volo.Abp.Domain.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
"methods": [ |
|||
{ |
|||
"returnType": "Boolean", |
|||
"isAsync": false, |
|||
"name": "HasPatchSignificantChanges", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "patch", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"contentType": "domainService", |
|||
"name": "GithubPatchAnalyzer" |
|||
"name": "GithubPatchAnalyzer", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Docs.FileSystem.Documents", |
|||
"summary": null, |
|||
"baseClass": { |
|||
"name": "DomainService", |
|||
"namespace": "Volo.Abp.Domain.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
"methods": [ |
|||
{ |
|||
"returnType": "Document", |
|||
"isAsync": true, |
|||
"name": "GetDocumentAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Project", |
|||
"name": "project", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "documentName", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "languageCode", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "version", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "Nullable<DateTime>", |
|||
"name": "lastKnownSignificantUpdateTime", |
|||
"isOptional": true |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "List<VersionInfo>", |
|||
"isAsync": true, |
|||
"name": "GetVersionsAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Project", |
|||
"name": "project", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "LanguageConfig", |
|||
"isAsync": true, |
|||
"name": "GetLanguageListAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Project", |
|||
"name": "project", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "version", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "DocumentResource", |
|||
"isAsync": true, |
|||
"name": "GetResource", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Project", |
|||
"name": "project", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "resourceName", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "languageCode", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "version", |
|||
"isOptional": false |
|||
} |
|||
] |
|||
} |
|||
], |
|||
"contentType": "domainService", |
|||
"name": "FileSystemDocumentSource" |
|||
"name": "FileSystemDocumentSource", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Docs.Documents.FullSearch.Elastic", |
|||
"summary": null, |
|||
"baseClass": { |
|||
"name": "DomainService", |
|||
"namespace": "Volo.Abp.Domain.Services", |
|||
"declaringAssemblyName": "Volo.Abp.Ddd.Domain" |
|||
}, |
|||
"methods": [ |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": true, |
|||
"name": "CreateIndexIfNeededAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "CancellationToken", |
|||
"name": "cancellationToken", |
|||
"isOptional": true |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": true, |
|||
"name": "AddOrUpdateAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Document", |
|||
"name": "document", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "CancellationToken", |
|||
"name": "cancellationToken", |
|||
"isOptional": true |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": true, |
|||
"name": "AddOrUpdateManyAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "IEnumerable<Document>", |
|||
"name": "documents", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "CancellationToken", |
|||
"name": "cancellationToken", |
|||
"isOptional": true |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": true, |
|||
"name": "DeleteAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Guid", |
|||
"name": "id", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "CancellationToken", |
|||
"name": "cancellationToken", |
|||
"isOptional": true |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": true, |
|||
"name": "DeleteAllAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "CancellationToken", |
|||
"name": "cancellationToken", |
|||
"isOptional": true |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": true, |
|||
"name": "DeleteAllByProjectIdAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "Guid", |
|||
"name": "projectId", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "CancellationToken", |
|||
"name": "cancellationToken", |
|||
"isOptional": true |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "List<EsDocument>", |
|||
"isAsync": true, |
|||
"name": "SearchAsync", |
|||
"summary": null, |
|||
"parameters": [ |
|||
{ |
|||
"type": "String", |
|||
"name": "context", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "Guid", |
|||
"name": "projectId", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "languageCode", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "String", |
|||
"name": "version", |
|||
"isOptional": false |
|||
}, |
|||
{ |
|||
"type": "Nullable<Int32>", |
|||
"name": "skipCount", |
|||
"isOptional": true |
|||
}, |
|||
{ |
|||
"type": "Nullable<Int32>", |
|||
"name": "maxResultCount", |
|||
"isOptional": true |
|||
}, |
|||
{ |
|||
"type": "CancellationToken", |
|||
"name": "cancellationToken", |
|||
"isOptional": true |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"returnType": "Void", |
|||
"isAsync": false, |
|||
"name": "ValidateElasticSearchEnabled", |
|||
"summary": null, |
|||
"parameters": [] |
|||
} |
|||
], |
|||
"contentType": "domainService", |
|||
"name": "ElasticDocumentFullSearch" |
|||
"name": "ElasticDocumentFullSearch", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Docs.Projects", |
|||
"summary": null, |
|||
"entityAnalyzeModel": { |
|||
"namespace": "Volo.Docs.Projects", |
|||
"primaryKeyType": "Guid", |
|||
"summary": null, |
|||
"collectionProperties": [], |
|||
"navigationProperties": [], |
|||
"collectionProperties": {}, |
|||
"navigationProperties": {}, |
|||
"contentType": "entity", |
|||
"name": "Project" |
|||
"name": "Project", |
|||
"summary": null |
|||
}, |
|||
"contentType": "repositoryInterface", |
|||
"name": "IProjectRepository" |
|||
"name": "IProjectRepository", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Docs.Documents", |
|||
"summary": null, |
|||
"entityAnalyzeModel": { |
|||
"namespace": "Volo.Docs.Documents", |
|||
"primaryKeyType": "Guid", |
|||
"summary": null, |
|||
"collectionProperties": [ |
|||
"Volo.Docs.Documents.DocumentContributor" |
|||
], |
|||
"navigationProperties": [], |
|||
"collectionProperties": { |
|||
"contributors": { |
|||
"name": "DocumentContributor", |
|||
"namespace": "Volo.Docs.Documents", |
|||
"declaringAssemblyName": "Volo.Docs.Domain" |
|||
} |
|||
}, |
|||
"navigationProperties": {}, |
|||
"contentType": "entity", |
|||
"name": "Document" |
|||
"name": "Document", |
|||
"summary": null |
|||
}, |
|||
"contentType": "repositoryInterface", |
|||
"name": "IDocumentRepository" |
|||
"name": "IDocumentRepository", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,24 @@ |
|||
{ |
|||
"name": "Volo.Docs.HttpApi.Client", |
|||
"hash": "50c3210eb30ae0ec2be506452e76e304", |
|||
"hash": "2664fb619b29ece59f080257f7cd7dca", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Docs", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Docs.Application.Contracts", |
|||
"namespace": "Volo.Docs", |
|||
"name": "DocsApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.Http.Client", |
|||
"namespace": "Volo.Abp.Http.Client", |
|||
"name": "AbpHttpClientModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "DocsHttpApiClientModule" |
|||
"name": "DocsHttpApiClientModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,24 @@ |
|||
{ |
|||
"name": "Volo.Docs.HttpApi", |
|||
"hash": "182385cfe2cc437b662822257d7e78c7", |
|||
"hash": "5b9269acaac218b51730781deae0f0e2", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Docs", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Docs.Application.Contracts", |
|||
"namespace": "Volo.Docs", |
|||
"name": "DocsApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc", |
|||
"name": "AbpAspNetCoreMvcModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "DocsHttpApiModule" |
|||
"name": "DocsHttpApiModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,29 +1,45 @@ |
|||
{ |
|||
"name": "Volo.Docs.MongoDB", |
|||
"hash": "a3746fbf103117f78e369dded9a6c7b0", |
|||
"hash": "42352ed68d8d29cf84fc19310b61bbea", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Docs.MongoDB", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Docs.Domain", |
|||
"namespace": "Volo.Docs", |
|||
"name": "DocsDomainModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.MongoDB", |
|||
"namespace": "Volo.Abp.MongoDB", |
|||
"name": "AbpMongoDbModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "DocsMongoDbModule" |
|||
"name": "DocsMongoDbModule", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Docs.MongoDB", |
|||
"connectionStringName": "Docs", |
|||
"databaseCollections": [ |
|||
{ |
|||
"entityFullName": "Volo.Docs.Projects.Project", |
|||
"entityFullName": "Volo.Docs.Documents.Document", |
|||
"contentType": "databaseCollection", |
|||
"name": "DocsProjects" |
|||
"name": "DocsDocumentS", |
|||
"summary": null |
|||
}, |
|||
{ |
|||
"entityFullName": "Volo.Docs.Documents.Document", |
|||
"entityFullName": "Volo.Docs.Projects.Project", |
|||
"contentType": "databaseCollection", |
|||
"name": "DocsDocumentS" |
|||
"name": "DocsProjects", |
|||
"summary": null |
|||
} |
|||
], |
|||
"contentType": "mongoDbContext", |
|||
"name": "DocsMongoDbContext" |
|||
"name": "DocsMongoDbContext", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
@ -1,11 +1,44 @@ |
|||
{ |
|||
"name": "Volo.Docs.Web", |
|||
"hash": "774b48775ac310eea144c8a3182a56b2", |
|||
"hash": "5247e92ecf4e6a5d88d17a5f0d82321a", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Docs", |
|||
"dependsOnModules": [ |
|||
{ |
|||
"declaringAssemblyName": "Volo.Docs.Application.Contracts", |
|||
"namespace": "Volo.Docs", |
|||
"name": "DocsApplicationContractsModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AutoMapper", |
|||
"namespace": "Volo.Abp.AutoMapper", |
|||
"name": "AbpAutoMapperModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc.UI.Bootstrap", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc.UI.Bootstrap", |
|||
"name": "AbpAspNetCoreMvcUiBootstrapModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared", |
|||
"name": "AbpAspNetCoreMvcUiThemeSharedModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc.UI.Packages", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc.UI.Packages", |
|||
"name": "AbpAspNetCoreMvcUiPackagesModule" |
|||
}, |
|||
{ |
|||
"declaringAssemblyName": "Volo.Abp.AspNetCore.Mvc.UI.Bundling", |
|||
"namespace": "Volo.Abp.AspNetCore.Mvc.UI.Bundling", |
|||
"name": "AbpAspNetCoreMvcUiBundlingModule" |
|||
} |
|||
], |
|||
"contentType": "abpModule", |
|||
"name": "DocsWebModule" |
|||
"name": "DocsWebModule", |
|||
"summary": null |
|||
} |
|||
] |
|||
} |
|||
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue