mirror of https://github.com/abpframework/abp.git
91 changed files with 1037 additions and 8398 deletions
File diff suppressed because it is too large
@ -0,0 +1,129 @@ |
|||
{ |
|||
"modules": { |
|||
"cms-kit-common": { |
|||
"rootPath": "cms-kit-common", |
|||
"remoteServiceName": "CmsKitCommon", |
|||
"controllers": { |
|||
"Volo.CmsKit.MediaDescriptors.MediaDescriptorController": { |
|||
"controllerName": "MediaDescriptor", |
|||
"controllerGroupName": "MediaDescriptor", |
|||
"type": "Volo.CmsKit.MediaDescriptors.MediaDescriptorController", |
|||
"interfaces": [ |
|||
{ |
|||
"type": "Volo.CmsKit.MediaDescriptors.IMediaDescriptorAppService" |
|||
} |
|||
], |
|||
"actions": { |
|||
"DownloadAsyncById": { |
|||
"uniqueName": "DownloadAsyncById", |
|||
"name": "DownloadAsync", |
|||
"httpMethod": "GET", |
|||
"url": "api/cms-kit/media/{id}", |
|||
"supportedVersions": [], |
|||
"parametersOnMethod": [ |
|||
{ |
|||
"name": "id", |
|||
"typeAsString": "System.Guid, System.Private.CoreLib", |
|||
"type": "System.Guid", |
|||
"typeSimple": "string", |
|||
"isOptional": false, |
|||
"defaultValue": null |
|||
} |
|||
], |
|||
"parameters": [ |
|||
{ |
|||
"nameOnMethod": "id", |
|||
"name": "id", |
|||
"jsonName": null, |
|||
"type": "System.Guid", |
|||
"typeSimple": "string", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": [], |
|||
"bindingSourceId": "Path", |
|||
"descriptorName": "" |
|||
} |
|||
], |
|||
"returnValue": { |
|||
"type": "Volo.Abp.Content.RemoteStreamContent", |
|||
"typeSimple": "Volo.Abp.Content.RemoteStreamContent" |
|||
}, |
|||
"allowAnonymous": null, |
|||
"implementFrom": "Volo.CmsKit.MediaDescriptors.IMediaDescriptorAppService" |
|||
} |
|||
} |
|||
}, |
|||
"Volo.CmsKit.Blogs.BlogFeatureController": { |
|||
"controllerName": "BlogFeature", |
|||
"controllerGroupName": "BlogFeature", |
|||
"type": "Volo.CmsKit.Blogs.BlogFeatureController", |
|||
"interfaces": [ |
|||
{ |
|||
"type": "Volo.CmsKit.Blogs.IBlogFeatureAppService" |
|||
} |
|||
], |
|||
"actions": { |
|||
"GetOrDefaultAsyncByBlogIdAndFeatureName": { |
|||
"uniqueName": "GetOrDefaultAsyncByBlogIdAndFeatureName", |
|||
"name": "GetOrDefaultAsync", |
|||
"httpMethod": "GET", |
|||
"url": "api/cms-kit/blogs/{blogId}/features/{featureName}", |
|||
"supportedVersions": [], |
|||
"parametersOnMethod": [ |
|||
{ |
|||
"name": "blogId", |
|||
"typeAsString": "System.Guid, System.Private.CoreLib", |
|||
"type": "System.Guid", |
|||
"typeSimple": "string", |
|||
"isOptional": false, |
|||
"defaultValue": null |
|||
}, |
|||
{ |
|||
"name": "featureName", |
|||
"typeAsString": "System.String, System.Private.CoreLib", |
|||
"type": "System.String", |
|||
"typeSimple": "string", |
|||
"isOptional": false, |
|||
"defaultValue": null |
|||
} |
|||
], |
|||
"parameters": [ |
|||
{ |
|||
"nameOnMethod": "blogId", |
|||
"name": "blogId", |
|||
"jsonName": null, |
|||
"type": "System.Guid", |
|||
"typeSimple": "string", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": [], |
|||
"bindingSourceId": "Path", |
|||
"descriptorName": "" |
|||
}, |
|||
{ |
|||
"nameOnMethod": "featureName", |
|||
"name": "featureName", |
|||
"jsonName": null, |
|||
"type": "System.String", |
|||
"typeSimple": "string", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": [], |
|||
"bindingSourceId": "Path", |
|||
"descriptorName": "" |
|||
} |
|||
], |
|||
"returnValue": { |
|||
"type": "Volo.CmsKit.Blogs.BlogFeatureDto", |
|||
"typeSimple": "Volo.CmsKit.Blogs.BlogFeatureDto" |
|||
}, |
|||
"allowAnonymous": null, |
|||
"implementFrom": "Volo.CmsKit.Blogs.IBlogFeatureAppService" |
|||
} |
|||
} |
|||
} |
|||
} |
|||
} |
|||
}, |
|||
"types": {} |
|||
} |
|||
File diff suppressed because it is too large
@ -1,3 +1,4 @@ |
|||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|||
using System; |
|||
using System.Threading.Tasks; |
|||
using Volo.Abp.Application.Dtos; |
|||
@ -1,3 +1,4 @@ |
|||
// This file is part of TagPublicClientProxy, you can customize it here
|
|||
using Volo.Abp.DependencyInjection; |
|||
using Volo.Abp.Http.Client.ClientProxying; |
|||
using Volo.CmsKit.Tags; |
|||
File diff suppressed because it is too large
@ -0,0 +1,730 @@ |
|||
{ |
|||
"modules": { |
|||
"docs-admin": { |
|||
"rootPath": "docs-admin", |
|||
"remoteServiceName": "AbpDocsAdmin", |
|||
"controllers": { |
|||
"Volo.Docs.Admin.DocumentsAdminController": { |
|||
"controllerName": "DocumentsAdmin", |
|||
"controllerGroupName": "DocumentsAdmin", |
|||
"type": "Volo.Docs.Admin.DocumentsAdminController", |
|||
"interfaces": [ |
|||
{ |
|||
"type": "Volo.Docs.Admin.Documents.IDocumentAdminAppService" |
|||
} |
|||
], |
|||
"actions": { |
|||
"ClearCacheAsyncByInput": { |
|||
"uniqueName": "ClearCacheAsyncByInput", |
|||
"name": "ClearCacheAsync", |
|||
"httpMethod": "POST", |
|||
"url": "api/docs/admin/documents/ClearCache", |
|||
"supportedVersions": [], |
|||
"parametersOnMethod": [ |
|||
{ |
|||
"name": "input", |
|||
"typeAsString": "Volo.Docs.Admin.Documents.ClearCacheInput, Volo.Docs.Admin.Application.Contracts", |
|||
"type": "Volo.Docs.Admin.Documents.ClearCacheInput", |
|||
"typeSimple": "Volo.Docs.Admin.Documents.ClearCacheInput", |
|||
"isOptional": false, |
|||
"defaultValue": null |
|||
} |
|||
], |
|||
"parameters": [ |
|||
{ |
|||
"nameOnMethod": "input", |
|||
"name": "input", |
|||
"jsonName": null, |
|||
"type": "Volo.Docs.Admin.Documents.ClearCacheInput", |
|||
"typeSimple": "Volo.Docs.Admin.Documents.ClearCacheInput", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "Body", |
|||
"descriptorName": "" |
|||
} |
|||
], |
|||
"returnValue": { |
|||
"type": "System.Void", |
|||
"typeSimple": "System.Void" |
|||
}, |
|||
"allowAnonymous": null, |
|||
"implementFrom": "Volo.Docs.Admin.Documents.IDocumentAdminAppService" |
|||
}, |
|||
"PullAllAsyncByInput": { |
|||
"uniqueName": "PullAllAsyncByInput", |
|||
"name": "PullAllAsync", |
|||
"httpMethod": "POST", |
|||
"url": "api/docs/admin/documents/PullAll", |
|||
"supportedVersions": [], |
|||
"parametersOnMethod": [ |
|||
{ |
|||
"name": "input", |
|||
"typeAsString": "Volo.Docs.Admin.Documents.PullAllDocumentInput, Volo.Docs.Admin.Application.Contracts", |
|||
"type": "Volo.Docs.Admin.Documents.PullAllDocumentInput", |
|||
"typeSimple": "Volo.Docs.Admin.Documents.PullAllDocumentInput", |
|||
"isOptional": false, |
|||
"defaultValue": null |
|||
} |
|||
], |
|||
"parameters": [ |
|||
{ |
|||
"nameOnMethod": "input", |
|||
"name": "input", |
|||
"jsonName": null, |
|||
"type": "Volo.Docs.Admin.Documents.PullAllDocumentInput", |
|||
"typeSimple": "Volo.Docs.Admin.Documents.PullAllDocumentInput", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "Body", |
|||
"descriptorName": "" |
|||
} |
|||
], |
|||
"returnValue": { |
|||
"type": "System.Void", |
|||
"typeSimple": "System.Void" |
|||
}, |
|||
"allowAnonymous": null, |
|||
"implementFrom": "Volo.Docs.Admin.Documents.IDocumentAdminAppService" |
|||
}, |
|||
"PullAsyncByInput": { |
|||
"uniqueName": "PullAsyncByInput", |
|||
"name": "PullAsync", |
|||
"httpMethod": "POST", |
|||
"url": "api/docs/admin/documents/Pull", |
|||
"supportedVersions": [], |
|||
"parametersOnMethod": [ |
|||
{ |
|||
"name": "input", |
|||
"typeAsString": "Volo.Docs.Admin.Documents.PullDocumentInput, Volo.Docs.Admin.Application.Contracts", |
|||
"type": "Volo.Docs.Admin.Documents.PullDocumentInput", |
|||
"typeSimple": "Volo.Docs.Admin.Documents.PullDocumentInput", |
|||
"isOptional": false, |
|||
"defaultValue": null |
|||
} |
|||
], |
|||
"parameters": [ |
|||
{ |
|||
"nameOnMethod": "input", |
|||
"name": "input", |
|||
"jsonName": null, |
|||
"type": "Volo.Docs.Admin.Documents.PullDocumentInput", |
|||
"typeSimple": "Volo.Docs.Admin.Documents.PullDocumentInput", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "Body", |
|||
"descriptorName": "" |
|||
} |
|||
], |
|||
"returnValue": { |
|||
"type": "System.Void", |
|||
"typeSimple": "System.Void" |
|||
}, |
|||
"allowAnonymous": null, |
|||
"implementFrom": "Volo.Docs.Admin.Documents.IDocumentAdminAppService" |
|||
}, |
|||
"GetAllAsyncByInput": { |
|||
"uniqueName": "GetAllAsyncByInput", |
|||
"name": "GetAllAsync", |
|||
"httpMethod": "GET", |
|||
"url": "api/docs/admin/documents/GetAll", |
|||
"supportedVersions": [], |
|||
"parametersOnMethod": [ |
|||
{ |
|||
"name": "input", |
|||
"typeAsString": "Volo.Docs.Admin.Documents.GetAllInput, Volo.Docs.Admin.Application.Contracts", |
|||
"type": "Volo.Docs.Admin.Documents.GetAllInput", |
|||
"typeSimple": "Volo.Docs.Admin.Documents.GetAllInput", |
|||
"isOptional": false, |
|||
"defaultValue": null |
|||
} |
|||
], |
|||
"parameters": [ |
|||
{ |
|||
"nameOnMethod": "input", |
|||
"name": "ProjectId", |
|||
"jsonName": null, |
|||
"type": "System.Guid?", |
|||
"typeSimple": "string?", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "ModelBinding", |
|||
"descriptorName": "input" |
|||
}, |
|||
{ |
|||
"nameOnMethod": "input", |
|||
"name": "Name", |
|||
"jsonName": null, |
|||
"type": "System.String", |
|||
"typeSimple": "string", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "ModelBinding", |
|||
"descriptorName": "input" |
|||
}, |
|||
{ |
|||
"nameOnMethod": "input", |
|||
"name": "Version", |
|||
"jsonName": null, |
|||
"type": "System.String", |
|||
"typeSimple": "string", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "ModelBinding", |
|||
"descriptorName": "input" |
|||
}, |
|||
{ |
|||
"nameOnMethod": "input", |
|||
"name": "LanguageCode", |
|||
"jsonName": null, |
|||
"type": "System.String", |
|||
"typeSimple": "string", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "ModelBinding", |
|||
"descriptorName": "input" |
|||
}, |
|||
{ |
|||
"nameOnMethod": "input", |
|||
"name": "FileName", |
|||
"jsonName": null, |
|||
"type": "System.String", |
|||
"typeSimple": "string", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "ModelBinding", |
|||
"descriptorName": "input" |
|||
}, |
|||
{ |
|||
"nameOnMethod": "input", |
|||
"name": "Format", |
|||
"jsonName": null, |
|||
"type": "System.String", |
|||
"typeSimple": "string", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "ModelBinding", |
|||
"descriptorName": "input" |
|||
}, |
|||
{ |
|||
"nameOnMethod": "input", |
|||
"name": "CreationTimeMin", |
|||
"jsonName": null, |
|||
"type": "System.DateTime?", |
|||
"typeSimple": "string?", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "ModelBinding", |
|||
"descriptorName": "input" |
|||
}, |
|||
{ |
|||
"nameOnMethod": "input", |
|||
"name": "CreationTimeMax", |
|||
"jsonName": null, |
|||
"type": "System.DateTime?", |
|||
"typeSimple": "string?", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "ModelBinding", |
|||
"descriptorName": "input" |
|||
}, |
|||
{ |
|||
"nameOnMethod": "input", |
|||
"name": "LastUpdatedTimeMin", |
|||
"jsonName": null, |
|||
"type": "System.DateTime?", |
|||
"typeSimple": "string?", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "ModelBinding", |
|||
"descriptorName": "input" |
|||
}, |
|||
{ |
|||
"nameOnMethod": "input", |
|||
"name": "LastUpdatedTimeMax", |
|||
"jsonName": null, |
|||
"type": "System.DateTime?", |
|||
"typeSimple": "string?", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "ModelBinding", |
|||
"descriptorName": "input" |
|||
}, |
|||
{ |
|||
"nameOnMethod": "input", |
|||
"name": "LastSignificantUpdateTimeMin", |
|||
"jsonName": null, |
|||
"type": "System.DateTime?", |
|||
"typeSimple": "string?", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "ModelBinding", |
|||
"descriptorName": "input" |
|||
}, |
|||
{ |
|||
"nameOnMethod": "input", |
|||
"name": "LastSignificantUpdateTimeMax", |
|||
"jsonName": null, |
|||
"type": "System.DateTime?", |
|||
"typeSimple": "string?", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "ModelBinding", |
|||
"descriptorName": "input" |
|||
}, |
|||
{ |
|||
"nameOnMethod": "input", |
|||
"name": "LastCachedTimeMin", |
|||
"jsonName": null, |
|||
"type": "System.DateTime?", |
|||
"typeSimple": "string?", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "ModelBinding", |
|||
"descriptorName": "input" |
|||
}, |
|||
{ |
|||
"nameOnMethod": "input", |
|||
"name": "LastCachedTimeMax", |
|||
"jsonName": null, |
|||
"type": "System.DateTime?", |
|||
"typeSimple": "string?", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "ModelBinding", |
|||
"descriptorName": "input" |
|||
}, |
|||
{ |
|||
"nameOnMethod": "input", |
|||
"name": "Sorting", |
|||
"jsonName": null, |
|||
"type": "System.String", |
|||
"typeSimple": "string", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "ModelBinding", |
|||
"descriptorName": "input" |
|||
}, |
|||
{ |
|||
"nameOnMethod": "input", |
|||
"name": "SkipCount", |
|||
"jsonName": null, |
|||
"type": "System.Int32", |
|||
"typeSimple": "number", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "ModelBinding", |
|||
"descriptorName": "input" |
|||
}, |
|||
{ |
|||
"nameOnMethod": "input", |
|||
"name": "MaxResultCount", |
|||
"jsonName": null, |
|||
"type": "System.Int32", |
|||
"typeSimple": "number", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "ModelBinding", |
|||
"descriptorName": "input" |
|||
} |
|||
], |
|||
"returnValue": { |
|||
"type": "Volo.Abp.Application.Dtos.PagedResultDto<Volo.Docs.Admin.Documents.DocumentDto>", |
|||
"typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto<Volo.Docs.Admin.Documents.DocumentDto>" |
|||
}, |
|||
"allowAnonymous": null, |
|||
"implementFrom": "Volo.Docs.Admin.Documents.IDocumentAdminAppService" |
|||
}, |
|||
"RemoveFromCacheAsyncByDocumentId": { |
|||
"uniqueName": "RemoveFromCacheAsyncByDocumentId", |
|||
"name": "RemoveFromCacheAsync", |
|||
"httpMethod": "PUT", |
|||
"url": "api/docs/admin/documents/RemoveDocumentFromCache", |
|||
"supportedVersions": [], |
|||
"parametersOnMethod": [ |
|||
{ |
|||
"name": "documentId", |
|||
"typeAsString": "System.Guid, System.Private.CoreLib", |
|||
"type": "System.Guid", |
|||
"typeSimple": "string", |
|||
"isOptional": false, |
|||
"defaultValue": null |
|||
} |
|||
], |
|||
"parameters": [ |
|||
{ |
|||
"nameOnMethod": "documentId", |
|||
"name": "documentId", |
|||
"jsonName": null, |
|||
"type": "System.Guid", |
|||
"typeSimple": "string", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "ModelBinding", |
|||
"descriptorName": "" |
|||
} |
|||
], |
|||
"returnValue": { |
|||
"type": "System.Void", |
|||
"typeSimple": "System.Void" |
|||
}, |
|||
"allowAnonymous": null, |
|||
"implementFrom": "Volo.Docs.Admin.Documents.IDocumentAdminAppService" |
|||
}, |
|||
"ReindexAsyncByDocumentId": { |
|||
"uniqueName": "ReindexAsyncByDocumentId", |
|||
"name": "ReindexAsync", |
|||
"httpMethod": "PUT", |
|||
"url": "api/docs/admin/documents/ReindexDocument", |
|||
"supportedVersions": [], |
|||
"parametersOnMethod": [ |
|||
{ |
|||
"name": "documentId", |
|||
"typeAsString": "System.Guid, System.Private.CoreLib", |
|||
"type": "System.Guid", |
|||
"typeSimple": "string", |
|||
"isOptional": false, |
|||
"defaultValue": null |
|||
} |
|||
], |
|||
"parameters": [ |
|||
{ |
|||
"nameOnMethod": "documentId", |
|||
"name": "documentId", |
|||
"jsonName": null, |
|||
"type": "System.Guid", |
|||
"typeSimple": "string", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "ModelBinding", |
|||
"descriptorName": "" |
|||
} |
|||
], |
|||
"returnValue": { |
|||
"type": "System.Void", |
|||
"typeSimple": "System.Void" |
|||
}, |
|||
"allowAnonymous": null, |
|||
"implementFrom": "Volo.Docs.Admin.Documents.IDocumentAdminAppService" |
|||
} |
|||
} |
|||
}, |
|||
"Volo.Docs.Admin.ProjectsAdminController": { |
|||
"controllerName": "ProjectsAdmin", |
|||
"controllerGroupName": "ProjectsAdmin", |
|||
"type": "Volo.Docs.Admin.ProjectsAdminController", |
|||
"interfaces": [ |
|||
{ |
|||
"type": "Volo.Docs.Admin.Projects.IProjectAdminAppService" |
|||
} |
|||
], |
|||
"actions": { |
|||
"GetListAsyncByInput": { |
|||
"uniqueName": "GetListAsyncByInput", |
|||
"name": "GetListAsync", |
|||
"httpMethod": "GET", |
|||
"url": "api/docs/admin/projects", |
|||
"supportedVersions": [], |
|||
"parametersOnMethod": [ |
|||
{ |
|||
"name": "input", |
|||
"typeAsString": "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto, Volo.Abp.Ddd.Application.Contracts", |
|||
"type": "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto", |
|||
"typeSimple": "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto", |
|||
"isOptional": false, |
|||
"defaultValue": null |
|||
} |
|||
], |
|||
"parameters": [ |
|||
{ |
|||
"nameOnMethod": "input", |
|||
"name": "SkipCount", |
|||
"jsonName": null, |
|||
"type": "System.Int32", |
|||
"typeSimple": "number", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "ModelBinding", |
|||
"descriptorName": "input" |
|||
}, |
|||
{ |
|||
"nameOnMethod": "input", |
|||
"name": "MaxResultCount", |
|||
"jsonName": null, |
|||
"type": "System.Int32", |
|||
"typeSimple": "number", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "ModelBinding", |
|||
"descriptorName": "input" |
|||
}, |
|||
{ |
|||
"nameOnMethod": "input", |
|||
"name": "Sorting", |
|||
"jsonName": null, |
|||
"type": "System.String", |
|||
"typeSimple": "string", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "ModelBinding", |
|||
"descriptorName": "input" |
|||
} |
|||
], |
|||
"returnValue": { |
|||
"type": "Volo.Abp.Application.Dtos.PagedResultDto<Volo.Docs.Admin.Projects.ProjectDto>", |
|||
"typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto<Volo.Docs.Admin.Projects.ProjectDto>" |
|||
}, |
|||
"allowAnonymous": null, |
|||
"implementFrom": "Volo.Docs.Admin.Projects.IProjectAdminAppService" |
|||
}, |
|||
"GetAsyncById": { |
|||
"uniqueName": "GetAsyncById", |
|||
"name": "GetAsync", |
|||
"httpMethod": "GET", |
|||
"url": "api/docs/admin/projects/{id}", |
|||
"supportedVersions": [], |
|||
"parametersOnMethod": [ |
|||
{ |
|||
"name": "id", |
|||
"typeAsString": "System.Guid, System.Private.CoreLib", |
|||
"type": "System.Guid", |
|||
"typeSimple": "string", |
|||
"isOptional": false, |
|||
"defaultValue": null |
|||
} |
|||
], |
|||
"parameters": [ |
|||
{ |
|||
"nameOnMethod": "id", |
|||
"name": "id", |
|||
"jsonName": null, |
|||
"type": "System.Guid", |
|||
"typeSimple": "string", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": [], |
|||
"bindingSourceId": "Path", |
|||
"descriptorName": "" |
|||
} |
|||
], |
|||
"returnValue": { |
|||
"type": "Volo.Docs.Admin.Projects.ProjectDto", |
|||
"typeSimple": "Volo.Docs.Admin.Projects.ProjectDto" |
|||
}, |
|||
"allowAnonymous": null, |
|||
"implementFrom": "Volo.Docs.Admin.Projects.IProjectAdminAppService" |
|||
}, |
|||
"CreateAsyncByInput": { |
|||
"uniqueName": "CreateAsyncByInput", |
|||
"name": "CreateAsync", |
|||
"httpMethod": "POST", |
|||
"url": "api/docs/admin/projects", |
|||
"supportedVersions": [], |
|||
"parametersOnMethod": [ |
|||
{ |
|||
"name": "input", |
|||
"typeAsString": "Volo.Docs.Admin.Projects.CreateProjectDto, Volo.Docs.Admin.Application.Contracts", |
|||
"type": "Volo.Docs.Admin.Projects.CreateProjectDto", |
|||
"typeSimple": "Volo.Docs.Admin.Projects.CreateProjectDto", |
|||
"isOptional": false, |
|||
"defaultValue": null |
|||
} |
|||
], |
|||
"parameters": [ |
|||
{ |
|||
"nameOnMethod": "input", |
|||
"name": "input", |
|||
"jsonName": null, |
|||
"type": "Volo.Docs.Admin.Projects.CreateProjectDto", |
|||
"typeSimple": "Volo.Docs.Admin.Projects.CreateProjectDto", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "Body", |
|||
"descriptorName": "" |
|||
} |
|||
], |
|||
"returnValue": { |
|||
"type": "Volo.Docs.Admin.Projects.ProjectDto", |
|||
"typeSimple": "Volo.Docs.Admin.Projects.ProjectDto" |
|||
}, |
|||
"allowAnonymous": null, |
|||
"implementFrom": "Volo.Docs.Admin.Projects.IProjectAdminAppService" |
|||
}, |
|||
"UpdateAsyncByIdAndInput": { |
|||
"uniqueName": "UpdateAsyncByIdAndInput", |
|||
"name": "UpdateAsync", |
|||
"httpMethod": "PUT", |
|||
"url": "api/docs/admin/projects/{id}", |
|||
"supportedVersions": [], |
|||
"parametersOnMethod": [ |
|||
{ |
|||
"name": "id", |
|||
"typeAsString": "System.Guid, System.Private.CoreLib", |
|||
"type": "System.Guid", |
|||
"typeSimple": "string", |
|||
"isOptional": false, |
|||
"defaultValue": null |
|||
}, |
|||
{ |
|||
"name": "input", |
|||
"typeAsString": "Volo.Docs.Admin.Projects.UpdateProjectDto, Volo.Docs.Admin.Application.Contracts", |
|||
"type": "Volo.Docs.Admin.Projects.UpdateProjectDto", |
|||
"typeSimple": "Volo.Docs.Admin.Projects.UpdateProjectDto", |
|||
"isOptional": false, |
|||
"defaultValue": null |
|||
} |
|||
], |
|||
"parameters": [ |
|||
{ |
|||
"nameOnMethod": "id", |
|||
"name": "id", |
|||
"jsonName": null, |
|||
"type": "System.Guid", |
|||
"typeSimple": "string", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": [], |
|||
"bindingSourceId": "Path", |
|||
"descriptorName": "" |
|||
}, |
|||
{ |
|||
"nameOnMethod": "input", |
|||
"name": "input", |
|||
"jsonName": null, |
|||
"type": "Volo.Docs.Admin.Projects.UpdateProjectDto", |
|||
"typeSimple": "Volo.Docs.Admin.Projects.UpdateProjectDto", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "Body", |
|||
"descriptorName": "" |
|||
} |
|||
], |
|||
"returnValue": { |
|||
"type": "Volo.Docs.Admin.Projects.ProjectDto", |
|||
"typeSimple": "Volo.Docs.Admin.Projects.ProjectDto" |
|||
}, |
|||
"allowAnonymous": null, |
|||
"implementFrom": "Volo.Docs.Admin.Projects.IProjectAdminAppService" |
|||
}, |
|||
"DeleteAsyncById": { |
|||
"uniqueName": "DeleteAsyncById", |
|||
"name": "DeleteAsync", |
|||
"httpMethod": "DELETE", |
|||
"url": "api/docs/admin/projects", |
|||
"supportedVersions": [], |
|||
"parametersOnMethod": [ |
|||
{ |
|||
"name": "id", |
|||
"typeAsString": "System.Guid, System.Private.CoreLib", |
|||
"type": "System.Guid", |
|||
"typeSimple": "string", |
|||
"isOptional": false, |
|||
"defaultValue": null |
|||
} |
|||
], |
|||
"parameters": [ |
|||
{ |
|||
"nameOnMethod": "id", |
|||
"name": "id", |
|||
"jsonName": null, |
|||
"type": "System.Guid", |
|||
"typeSimple": "string", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "ModelBinding", |
|||
"descriptorName": "" |
|||
} |
|||
], |
|||
"returnValue": { |
|||
"type": "System.Void", |
|||
"typeSimple": "System.Void" |
|||
}, |
|||
"allowAnonymous": null, |
|||
"implementFrom": "Volo.Docs.Admin.Projects.IProjectAdminAppService" |
|||
}, |
|||
"ReindexAllAsync": { |
|||
"uniqueName": "ReindexAllAsync", |
|||
"name": "ReindexAllAsync", |
|||
"httpMethod": "POST", |
|||
"url": "api/docs/admin/projects/ReindexAll", |
|||
"supportedVersions": [], |
|||
"parametersOnMethod": [], |
|||
"parameters": [], |
|||
"returnValue": { |
|||
"type": "System.Void", |
|||
"typeSimple": "System.Void" |
|||
}, |
|||
"allowAnonymous": null, |
|||
"implementFrom": "Volo.Docs.Admin.Projects.IProjectAdminAppService" |
|||
}, |
|||
"ReindexAsyncByInput": { |
|||
"uniqueName": "ReindexAsyncByInput", |
|||
"name": "ReindexAsync", |
|||
"httpMethod": "POST", |
|||
"url": "api/docs/admin/projects/Reindex", |
|||
"supportedVersions": [], |
|||
"parametersOnMethod": [ |
|||
{ |
|||
"name": "input", |
|||
"typeAsString": "Volo.Docs.Admin.Projects.ReindexInput, Volo.Docs.Admin.Application.Contracts", |
|||
"type": "Volo.Docs.Admin.Projects.ReindexInput", |
|||
"typeSimple": "Volo.Docs.Admin.Projects.ReindexInput", |
|||
"isOptional": false, |
|||
"defaultValue": null |
|||
} |
|||
], |
|||
"parameters": [ |
|||
{ |
|||
"nameOnMethod": "input", |
|||
"name": "input", |
|||
"jsonName": null, |
|||
"type": "Volo.Docs.Admin.Projects.ReindexInput", |
|||
"typeSimple": "Volo.Docs.Admin.Projects.ReindexInput", |
|||
"isOptional": false, |
|||
"defaultValue": null, |
|||
"constraintTypes": null, |
|||
"bindingSourceId": "Body", |
|||
"descriptorName": "" |
|||
} |
|||
], |
|||
"returnValue": { |
|||
"type": "System.Void", |
|||
"typeSimple": "System.Void" |
|||
}, |
|||
"allowAnonymous": null, |
|||
"implementFrom": "Volo.Docs.Admin.Projects.IProjectAdminAppService" |
|||
} |
|||
} |
|||
} |
|||
} |
|||
} |
|||
}, |
|||
"types": {} |
|||
} |
|||
File diff suppressed because it is too large
Loading…
Reference in new issue