diff --git a/.gitignore b/.gitignore
index 5945aca..8dd4607 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,3 @@
-# ---> VisualStudio
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##
diff --git a/angular/angular.json b/angular/angular.json
index 274eb18..ab9d4a1 100644
--- a/angular/angular.json
+++ b/angular/angular.json
@@ -28,7 +28,7 @@
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "scss",
"allowedCommonJsDependencies": ["chart.js", "js-sha256"],
- "assets": ["src/favicon.ico", "src/assets"],
+ "assets": ["src/favicon.ico", "src/assets", "src/manifest.webmanifest"],
"styles": [
{
"input": "node_modules/@volo/ngx-lepton-x.lite/assets/css/bootstrap-dim.css",
@@ -112,7 +112,9 @@
},
"src/styles.scss"
],
- "scripts": []
+ "scripts": [],
+ "serviceWorker": true,
+ "ngswConfigPath": "ngsw-config.json"
},
"configurations": {
"production": {
@@ -173,7 +175,7 @@
"tsConfig": "tsconfig.spec.json",
"karmaConfig": "karma.conf.js",
"inlineStyleLanguage": "scss",
- "assets": ["src/favicon.ico", "src/assets"],
+ "assets": ["src/favicon.ico", "src/assets", "src/manifest.webmanifest"],
"styles": ["src/styles.scss"],
"scripts": []
}
diff --git a/angular/ngsw-config.json b/angular/ngsw-config.json
new file mode 100644
index 0000000..f8bf210
--- /dev/null
+++ b/angular/ngsw-config.json
@@ -0,0 +1,30 @@
+{
+ "$schema": "./node_modules/@angular/service-worker/config/schema.json",
+ "index": "/index.html",
+ "assetGroups": [
+ {
+ "name": "app",
+ "installMode": "prefetch",
+ "resources": {
+ "files": [
+ "/favicon.ico",
+ "/index.html",
+ "/manifest.webmanifest",
+ "/*.css",
+ "/*.js"
+ ]
+ }
+ },
+ {
+ "name": "assets",
+ "installMode": "lazy",
+ "updateMode": "prefetch",
+ "resources": {
+ "files": [
+ "/assets/**",
+ "/*.(svg|cur|jpg|jpeg|png|apng|webp|avif|gif|otf|ttf|woff|woff2)"
+ ]
+ }
+ }
+ ]
+}
diff --git a/angular/package.json b/angular/package.json
index 251d218..42eb0e1 100644
--- a/angular/package.json
+++ b/angular/package.json
@@ -30,6 +30,7 @@
"@angular/platform-browser": "~17.1.0",
"@angular/platform-browser-dynamic": "~17.1.0",
"@angular/router": "~17.1.0",
+ "@angular/service-worker": "~17.1.0",
"bootstrap-icons": "~1.8.0",
"rxjs": "~7.8.0",
"tslib": "^2.0.0",
diff --git a/angular/src/app/app-routing.module.ts b/angular/src/app/app-routing.module.ts
index db325cc..0d9f82e 100644
--- a/angular/src/app/app-routing.module.ts
+++ b/angular/src/app/app-routing.module.ts
@@ -25,9 +25,6 @@ const routes: Routes = [
loadChildren: () =>
import('@abp/ng.setting-management').then(m => m.SettingManagementModule.forLazy()),
},
- { path: 'books', loadChildren: () => import('./book/book.module').then(m => m.BookModule) },
- { path: 'customer', loadChildren: () => import('./customer/customer.module').then(m => m.CustomerModule) },
- { path: 'book-issue', loadChildren: () => import('./book-issue/book-issue.module').then(m => m.BookIssueModule) },
];
@NgModule({
diff --git a/angular/src/app/app.module.ts b/angular/src/app/app.module.ts
index 63be3aa..7d188e9 100644
--- a/angular/src/app/app.module.ts
+++ b/angular/src/app/app.module.ts
@@ -17,6 +17,7 @@ import { AbpOAuthModule } from '@abp/ng.oauth';
import { ThemeLeptonXModule } from '@abp/ng.theme.lepton-x';
import { SideMenuLayoutModule } from '@abp/ng.theme.lepton-x/layouts';
import { AccountLayoutModule } from '@abp/ng.theme.lepton-x/account';
+import { ServiceWorkerModule } from '@angular/service-worker';
@NgModule({
imports: [
BrowserModule,
@@ -39,7 +40,13 @@ import { AccountLayoutModule } from '@abp/ng.theme.lepton-x/account';
InternetConnectionStatusComponent,
ThemeLeptonXModule.forRoot(),
SideMenuLayoutModule.forRoot(),
- AccountLayoutModule.forRoot()
+ AccountLayoutModule.forRoot(),
+ ServiceWorkerModule.register('ngsw-worker.js', {
+ enabled: environment.production,
+ // Register the ServiceWorker as soon as the application is stable
+ // or after 30 seconds (whichever comes first).
+ registrationStrategy: 'registerWhenStable:30000'
+ })
],
declarations: [AppComponent],
providers: [APP_ROUTE_PROVIDER],
diff --git a/angular/src/app/book-issue/book-issue-routing.module.ts b/angular/src/app/book-issue/book-issue-routing.module.ts
deleted file mode 100644
index 5ad6a71..0000000
--- a/angular/src/app/book-issue/book-issue-routing.module.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import { NgModule } from '@angular/core';
-import { RouterModule, Routes } from '@angular/router';
-import { BookIssueComponent } from './book-issue.component';
-import { authGuard, permissionGuard } from '@abp/ng.core';
-
-const routes: Routes = [{ path: '', component: BookIssueComponent,canActivate: [authGuard, permissionGuard] }];
-
-@NgModule({
- imports: [RouterModule.forChild(routes)],
- exports: [RouterModule]
-})
-export class BookIssueRoutingModule { }
diff --git a/angular/src/app/book-issue/book-issue.component.html b/angular/src/app/book-issue/book-issue.component.html
deleted file mode 100644
index 3574eeb..0000000
--- a/angular/src/app/book-issue/book-issue.component.html
+++ /dev/null
@@ -1,97 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ row.issueDate | date }}
-
-
-
-
-
-
-
-
- Book Issued
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/angular/src/app/book-issue/book-issue.component.scss b/angular/src/app/book-issue/book-issue.component.scss
deleted file mode 100644
index e69de29..0000000
diff --git a/angular/src/app/book-issue/book-issue.component.spec.ts b/angular/src/app/book-issue/book-issue.component.spec.ts
deleted file mode 100644
index 583737e..0000000
--- a/angular/src/app/book-issue/book-issue.component.spec.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
-
-import { BookIssueComponent } from './book-issue.component';
-
-describe('BookIssueComponent', () => {
- let component: BookIssueComponent;
- let fixture: ComponentFixture;
-
- beforeEach(async () => {
- await TestBed.configureTestingModule({
- declarations: [BookIssueComponent]
- })
- .compileComponents();
-
- fixture = TestBed.createComponent(BookIssueComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
-
- it('should create', () => {
- expect(component).toBeTruthy();
- });
-});
diff --git a/angular/src/app/book-issue/book-issue.component.ts b/angular/src/app/book-issue/book-issue.component.ts
deleted file mode 100644
index 50e7c71..0000000
--- a/angular/src/app/book-issue/book-issue.component.ts
+++ /dev/null
@@ -1,83 +0,0 @@
-import { Component, OnInit } from '@angular/core';
-import { ListService, PagedResultDto } from '@abp/ng.core';
-import { BookIssueDto, BookIssueListDto, BookIssueService } from '@proxy/book-issued';
-import { FormBuilder, FormControl, FormGroup, Validators } from '@angular/forms';
-import { BookDto, BookService } from '@proxy/books';
-import { CustomerDto, CustomerService } from '@proxy/customers';
-import { ConfirmationService,Confirmation } from '@abp/ng.theme.shared';
-
-@Component({
- selector: 'app-book-issue',
- templateUrl: './book-issue.component.html',
- styleUrl: './book-issue.component.scss',
- providers: [ListService]
-})
-export class BookIssueComponent implements OnInit {
- isModalOpen = false;
-
- form:FormGroup;
- dropDownbook= {} as Array;
- dropDownCustomer= {} as Array;
- bookIssueList = { items: [], totalCount: 0 } as PagedResultDto;
-
- constructor(public readonly list: ListService,
- private bookIssuedService: BookIssueService,
- private bookService: BookService,
- private customerService: CustomerService,
- private fb: FormBuilder,
- private confirmation: ConfirmationService ) {}
-
- ngOnInit(): void {
- this.dropdowninitiale();
-
- const bookStreamCreator = (query) => this.bookIssuedService.getList(query);
-
- this.list.hookToQuery(bookStreamCreator).subscribe((response) => {
- this.bookIssueList = response;
- });
- }
-
- createBookIssue() {
- this.buildForm();
- this.isModalOpen = true;
- }
-
- buildForm() {
-
- this.form = this.fb.group({
- bookId: ['', Validators.required],
- customerId: ['', Validators.required],
- });
- }
-
- save() {
- if (this.form.invalid) {
- return;
- }
- this.bookIssuedService.create(this.form.value).subscribe(() => {
- this.isModalOpen = false;
- this.form.reset();
- this.list.get();
- });
-
- }
-
- dropdowninitiale(){
- this.bookService.getBookDropDown().subscribe((response)=>{
- this.dropDownbook = response;
-
- });
- this.customerService.getcustomerDropDown().subscribe((response)=>{
- this.dropDownCustomer = response;
-
- });
- }
- delete(bookIssueId: number) {
- this.confirmation.warn('::AreYouSureToUnIssue', '::AreYouSure').subscribe((status) => {
- if (status === Confirmation.Status.confirm) {
- this.bookIssuedService.delete(bookIssueId).subscribe(() => this.list.get());
- }
- });
-}
-
-}
diff --git a/angular/src/app/book-issue/book-issue.module.ts b/angular/src/app/book-issue/book-issue.module.ts
deleted file mode 100644
index f1d6e3f..0000000
--- a/angular/src/app/book-issue/book-issue.module.ts
+++ /dev/null
@@ -1,19 +0,0 @@
-import { NgModule } from '@angular/core';
-import { CommonModule } from '@angular/common';
-
-import { BookIssueRoutingModule } from './book-issue-routing.module';
-import { BookIssueComponent } from './book-issue.component';
-
-import{SharedModule} from '../shared/shared.module';
-
-@NgModule({
- declarations: [
- BookIssueComponent
- ],
- imports: [
- CommonModule,
- BookIssueRoutingModule,
- SharedModule
- ]
-})
-export class BookIssueModule { }
diff --git a/angular/src/app/book/book-routing.module.ts b/angular/src/app/book/book-routing.module.ts
deleted file mode 100644
index 15a4d4b..0000000
--- a/angular/src/app/book/book-routing.module.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import { NgModule } from '@angular/core';
-import { RouterModule, Routes } from '@angular/router';
-import { BookComponent } from './book.component';
-import { authGuard, permissionGuard } from '@abp/ng.core';
-
-const routes: Routes = [{ path: '', component: BookComponent, canActivate: [authGuard, permissionGuard] }];
-
-@NgModule({
- imports: [RouterModule.forChild(routes)],
- exports: [RouterModule]
-})
-export class BookRoutingModule { }
diff --git a/angular/src/app/book/book.component.html b/angular/src/app/book/book.component.html
deleted file mode 100644
index e6536a9..0000000
--- a/angular/src/app/book/book.component.html
+++ /dev/null
@@ -1,122 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ '::Enum:BookType.' + row.type | abpLocalization }}
-
-
-
-
- {{ row.publishDate | date }}
-
-
-
-
- {{ row.price | currency }}
-
-
-
-
-
-
-
-
-
- {{ '::NewBook' | abpLocalization }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/angular/src/app/book/book.component.scss b/angular/src/app/book/book.component.scss
deleted file mode 100644
index e69de29..0000000
diff --git a/angular/src/app/book/book.component.spec.ts b/angular/src/app/book/book.component.spec.ts
deleted file mode 100644
index 5f6c7f5..0000000
--- a/angular/src/app/book/book.component.spec.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
-
-import { BookComponent } from './book.component';
-
-describe('BookComponent', () => {
- let component: BookComponent;
- let fixture: ComponentFixture;
-
- beforeEach(async () => {
- await TestBed.configureTestingModule({
- declarations: [BookComponent]
- })
- .compileComponents();
-
- fixture = TestBed.createComponent(BookComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
-
- it('should create', () => {
- expect(component).toBeTruthy();
- });
-});
diff --git a/angular/src/app/book/book.component.ts b/angular/src/app/book/book.component.ts
deleted file mode 100644
index 1f543e5..0000000
--- a/angular/src/app/book/book.component.ts
+++ /dev/null
@@ -1,88 +0,0 @@
-import { ListService, PagedResultDto } from '@abp/ng.core';
-import { Component, OnInit } from '@angular/core';
-import { FormBuilder, FormGroup, Validators } from '@angular/forms';
-import { BookService, BookDto, bookTypeOptions } from '@proxy/books';
-import { NgbDateNativeAdapter, NgbDateAdapter } from '@ng-bootstrap/ng-bootstrap';
-import { ConfirmationService, Confirmation } from '@abp/ng.theme.shared';
-
-@Component({
- selector: 'app-book',
- templateUrl: './book.component.html',
- styleUrls: ['./book.component.scss'],
- providers: [ListService,
- { provide: NgbDateAdapter, useClass: NgbDateNativeAdapter } // add this line
- ],
-})
-export class BookComponent implements OnInit {
- book = { items: [], totalCount: 0 } as PagedResultDto;
- selectedBook = {} as BookDto; // declare selectedBook
- isModalOpen = false; // add this line
- form: FormGroup; // add this line
- bookTypes = bookTypeOptions;
-
- constructor(public readonly list: ListService, private bookService: BookService, private fb: FormBuilder,
- private confirmation: ConfirmationService
- ) {}
-
- ngOnInit() {
- debugger;
-
- const bookStreamCreator = (query) => this.bookService.getList(query);
-
- this.list.hookToQuery(bookStreamCreator).subscribe((response) => {
- this.book = response;
- });
- }
-
-
- // add new method
- createBook() {
- this.buildForm(); // add this line
- this.selectedBook = {} as BookDto; // reset the selected book
-
- this.isModalOpen = true;
- }
- buildForm() {
- this.form = this.fb.group({
- name: ['', Validators.required],
- type: [null, Validators.required],
- publishDate: [null, Validators.required],
- price: [null, Validators.required],
- });
- }
- save() {
- if (this.form.invalid) {
- return;
- }
- const request = this.selectedBook.id
- ? this.bookService.update(this.selectedBook.id, this.form.value)
- : this.bookService.create(this.form.value);
-
- request.subscribe(() => {
- this.isModalOpen = false;
- this.form.reset();
- this.list.get();
- });
- }
-
- // Add editBook method
- editBook(id: string) {
- this.bookService.get(id).subscribe((book) => {
- this.selectedBook = book;
- this.buildForm();
- this.form.controls["name"].setValue(this.selectedBook.name);
- this.form.controls["type"].setValue(this.selectedBook.type);
- this.form.controls["publishDate"].setValue(this.selectedBook.publishDate);
- this.form.controls["price"].setValue(this.selectedBook.price);
- this.isModalOpen = true;
- });
- }
-
- delete(id: string) {
- this.confirmation.warn('::AreYouSureToDelete', '::AreYouSure').subscribe((status) => {
- if (status === Confirmation.Status.confirm) {
- this.bookService.delete(id).subscribe(() => this.list.get());
- }
- });
- }
-}
diff --git a/angular/src/app/book/book.module.ts b/angular/src/app/book/book.module.ts
deleted file mode 100644
index 8c975e2..0000000
--- a/angular/src/app/book/book.module.ts
+++ /dev/null
@@ -1,21 +0,0 @@
-import { NgModule } from '@angular/core';
-import { CommonModule } from '@angular/common';
-
-import { BookRoutingModule } from './book-routing.module';
-import { BookComponent } from './book.component';
-import{SharedModule} from '../shared/shared.module';
-import { NgbDatepickerModule } from '@ng-bootstrap/ng-bootstrap'; // add this line
-
-
-@NgModule({
- declarations: [
- BookComponent
- ],
- imports: [
- CommonModule,
- BookRoutingModule,
- SharedModule,
- NgbDatepickerModule
- ]
-})
-export class BookModule { }
diff --git a/angular/src/app/customer/customer-routing.module.ts b/angular/src/app/customer/customer-routing.module.ts
deleted file mode 100644
index 4890aa0..0000000
--- a/angular/src/app/customer/customer-routing.module.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { NgModule } from '@angular/core';
-import { RouterModule, Routes } from '@angular/router';
-import { CustomerComponent } from './customer.component';
-import { authGuard, permissionGuard } from '@abp/ng.core';
-
-
-const routes: Routes = [{ path: '', component: CustomerComponent,canActivate: [authGuard, permissionGuard] }];
-
-@NgModule({
- imports: [RouterModule.forChild(routes)],
- exports: [RouterModule]
-})
-export class CustomerRoutingModule { }
diff --git a/angular/src/app/customer/customer.component.html b/angular/src/app/customer/customer.component.html
deleted file mode 100644
index 8ebc854..0000000
--- a/angular/src/app/customer/customer.component.html
+++ /dev/null
@@ -1,101 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ (selectedcustomer.id ? '::Edit' : '::New Customer' ) | abpLocalization }}
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/angular/src/app/customer/customer.component.scss b/angular/src/app/customer/customer.component.scss
deleted file mode 100644
index e69de29..0000000
diff --git a/angular/src/app/customer/customer.component.spec.ts b/angular/src/app/customer/customer.component.spec.ts
deleted file mode 100644
index e98c726..0000000
--- a/angular/src/app/customer/customer.component.spec.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
-
-import { CustomerComponent } from './customer.component';
-
-describe('CustomerComponent', () => {
- let component: CustomerComponent;
- let fixture: ComponentFixture;
-
- beforeEach(async () => {
- await TestBed.configureTestingModule({
- declarations: [CustomerComponent]
- })
- .compileComponents();
-
- fixture = TestBed.createComponent(CustomerComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
-
- it('should create', () => {
- expect(component).toBeTruthy();
- });
-});
diff --git a/angular/src/app/customer/customer.component.ts b/angular/src/app/customer/customer.component.ts
deleted file mode 100644
index 730b1b4..0000000
--- a/angular/src/app/customer/customer.component.ts
+++ /dev/null
@@ -1,92 +0,0 @@
-import { Component, OnInit } from '@angular/core';
-import { ListService, PagedResultDto } from '@abp/ng.core';
-import { CustomerDto, CustomerService } from '@proxy/customers';
-import { FormGroup, FormBuilder, Validators } from '@angular/forms';
-import { ConfirmationService, Confirmation } from '@abp/ng.theme.shared';
-
-@Component({
- selector: 'app-customer',
- templateUrl: './customer.component.html',
- styleUrl: './customer.component.scss',
- providers: [ListService]
-})
-export class CustomerComponent implements OnInit {
- customer = { items: [], totalCount: 0 } as PagedResultDto;
- isModalOpen = false;
- form: FormGroup;
- selectedcustomer = {} as CustomerDto;
- constructor(public readonly list: ListService,
- private customerService: CustomerService,
- private fb: FormBuilder,
- private confirmation: ConfirmationService ) {}
-
- ngOnInit() {
- debugger;
-
- const bookStreamCreator = (query) => this.customerService.getList(query);
-
- this.list.hookToQuery(bookStreamCreator).subscribe((response) => {
- this.customer = response;
- });
- }
- // add new method
- createCustomer() {
- this.selectedcustomer = {} as CustomerDto;
- this.buildForm();
- this.isModalOpen = true;
- }
- editCustomer(id: number) {
- this.customerService.get(id).subscribe((customer) => {
- debugger;
- this.selectedcustomer = customer;
- this.buildForm();
- this.isModalOpen = true;
- });
- }
-
- buildForm() {
-
- this.form = this.fb.group({
- firstName: [this.selectedcustomer.firstName || '', Validators.required],
- lastName: [this.selectedcustomer.lastName, Validators.required],
- phone: [this.selectedcustomer.phone, Validators.required],
- address: [this.selectedcustomer.address, Validators.required],
- });
- }
-
- // add save method
- save() {
- if (this.form.invalid) {
- return;
- }
-debugger;
- const request = this.selectedcustomer.id
- ? this.customerService.update(this.selectedcustomer.id, this.form.value)
- : this.customerService.create(this.form.value);
-if(this.selectedcustomer.id){
-
- this.customerService.update(this.selectedcustomer.id,this.form.value).subscribe(() => {
- this.isModalOpen = false;
- this.form.reset();
- this.list.get();
- });
-}
-else{
- this.customerService.create(this.form.value).subscribe(() => {
- this.isModalOpen = false;
- this.form.reset();
- this.list.get();
- });
-
-}
-
- }
-
- delete(id: number) {
- this.confirmation.warn('::AreYouSureToDelete', '::AreYouSure').subscribe((status) => {
- if (status === Confirmation.Status.confirm) {
- this.customerService.delete(id).subscribe(() => this.list.get());
- }
- });
- }
-}
diff --git a/angular/src/app/customer/customer.module.ts b/angular/src/app/customer/customer.module.ts
deleted file mode 100644
index bd21c5f..0000000
--- a/angular/src/app/customer/customer.module.ts
+++ /dev/null
@@ -1,20 +0,0 @@
-import { NgModule } from '@angular/core';
-import { CommonModule } from '@angular/common';
-
-import { CustomerRoutingModule } from './customer-routing.module';
-import { CustomerComponent } from './customer.component';
-
-import{SharedModule} from '../shared/shared.module';
-
-@NgModule({
- declarations: [
- CustomerComponent
- ],
- imports: [
- CommonModule,
- CustomerRoutingModule,
- SharedModule
-
- ]
-})
-export class CustomerModule { }
diff --git a/angular/src/app/proxy/README.md b/angular/src/app/proxy/README.md
deleted file mode 100644
index 767dfd0..0000000
--- a/angular/src/app/proxy/README.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# Proxy Generation Output
-
-This directory includes the output of the latest proxy generation.
-The files and folders in it will be overwritten when proxy generation is run again.
-Therefore, please do not place your own content in this folder.
-
-In addition, `generate-proxy.json` works like a lock file.
-It includes information used by the proxy generator, so please do not delete or modify it.
-
-Finally, the name of the files and folders should not be changed for two reasons:
-- Proxy generator will keep creating them at those paths and you will have multiple copies of the same content.
-- ABP Suite generates files which include imports from this folder.
-
-> **Important Notice:** If you are building a module and are planning to publish to npm,
-> some of the generated proxies are likely to be exported from public-api.ts file. In such a case,
-> please make sure you export files directly and not from barrel exports. In other words,
-> do not include index.ts exports in your public-api.ts exports.
diff --git a/angular/src/app/proxy/authors/author.service.ts b/angular/src/app/proxy/authors/author.service.ts
deleted file mode 100644
index 3cfa580..0000000
--- a/angular/src/app/proxy/authors/author.service.ts
+++ /dev/null
@@ -1,56 +0,0 @@
-import type { AuthorDto, CreateAuthorDto, GetAuthorListDto, UpdateAuthorDto } from './models';
-import { RestService, Rest } from '@abp/ng.core';
-import type { PagedResultDto } from '@abp/ng.core';
-import { Injectable } from '@angular/core';
-
-@Injectable({
- providedIn: 'root',
-})
-export class AuthorService {
- apiName = 'Default';
-
-
- create = (input: CreateAuthorDto, config?: Partial) =>
- this.restService.request({
- method: 'POST',
- url: '/api/app/author',
- body: input,
- },
- { apiName: this.apiName,...config });
-
-
- delete = (id: string, config?: Partial) =>
- this.restService.request({
- method: 'DELETE',
- url: `/api/app/author/${id}`,
- },
- { apiName: this.apiName,...config });
-
-
- get = (id: string, config?: Partial) =>
- this.restService.request({
- method: 'GET',
- url: `/api/app/author/${id}`,
- },
- { apiName: this.apiName,...config });
-
-
- getList = (input: GetAuthorListDto, config?: Partial) =>
- this.restService.request>({
- method: 'GET',
- url: '/api/app/author',
- params: { filter: input.filter, sorting: input.sorting, skipCount: input.skipCount, maxResultCount: input.maxResultCount },
- },
- { apiName: this.apiName,...config });
-
-
- update = (id: string, input: UpdateAuthorDto, config?: Partial) =>
- this.restService.request({
- method: 'PUT',
- url: `/api/app/author/${id}`,
- body: input,
- },
- { apiName: this.apiName,...config });
-
- constructor(private restService: RestService) {}
-}
diff --git a/angular/src/app/proxy/authors/index.ts b/angular/src/app/proxy/authors/index.ts
deleted file mode 100644
index 04dfc16..0000000
--- a/angular/src/app/proxy/authors/index.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-export * from './author.service';
-export * from './models';
diff --git a/angular/src/app/proxy/authors/models.ts b/angular/src/app/proxy/authors/models.ts
deleted file mode 100644
index ea30a1f..0000000
--- a/angular/src/app/proxy/authors/models.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import type { EntityDto, PagedAndSortedResultRequestDto } from '@abp/ng.core';
-
-export interface AuthorDto extends EntityDto {
- name?: string;
- birthDate?: string;
- shortBio?: string;
-}
-
-export interface CreateAuthorDto {
- name: string;
- birthDate: string;
- shortBio?: string;
-}
-
-export interface GetAuthorListDto extends PagedAndSortedResultRequestDto {
- filter?: string;
-}
-
-export interface UpdateAuthorDto {
- name: string;
- birthDate: string;
- shortBio?: string;
-}
diff --git a/angular/src/app/proxy/book-issued/book-issue.service.ts b/angular/src/app/proxy/book-issued/book-issue.service.ts
deleted file mode 100644
index 8baba6e..0000000
--- a/angular/src/app/proxy/book-issued/book-issue.service.ts
+++ /dev/null
@@ -1,55 +0,0 @@
-import type { BookIssueDto, BookIssueListDto } from './models';
-import { RestService, Rest } from '@abp/ng.core';
-import type { PagedResultDto } from '@abp/ng.core';
-import { Injectable } from '@angular/core';
-
-@Injectable({
- providedIn: 'root',
-})
-export class BookIssueService {
- apiName = 'Default';
-
-
- create = (input: BookIssueDto, config?: Partial) =>
- this.restService.request({
- method: 'POST',
- url: '/api/app/book-issue',
- body: input,
- },
- { apiName: this.apiName,...config });
-
-
- delete = (id: number, config?: Partial) =>
- this.restService.request({
- method: 'DELETE',
- url: `/api/app/book-issue/${id}`,
- },
- { apiName: this.apiName,...config });
-
-
- get = (id: number, config?: Partial) =>
- this.restService.request({
- method: 'GET',
- url: `/api/app/book-issue/${id}`,
- },
- { apiName: this.apiName,...config });
-
-
- getList = (config?: Partial) =>
- this.restService.request>({
- method: 'GET',
- url: '/api/app/book-issue',
- },
- { apiName: this.apiName,...config });
-
-
- update = (id: number, input: BookIssueDto, config?: Partial) =>
- this.restService.request({
- method: 'PUT',
- url: `/api/app/book-issue/${id}`,
- body: input,
- },
- { apiName: this.apiName,...config });
-
- constructor(private restService: RestService) {}
-}
diff --git a/angular/src/app/proxy/book-issued/index.ts b/angular/src/app/proxy/book-issued/index.ts
deleted file mode 100644
index a6cc6de..0000000
--- a/angular/src/app/proxy/book-issued/index.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-export * from './book-issue.service';
-export * from './models';
diff --git a/angular/src/app/proxy/book-issued/models.ts b/angular/src/app/proxy/book-issued/models.ts
deleted file mode 100644
index 52d1f0f..0000000
--- a/angular/src/app/proxy/book-issued/models.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import type { EntityDto } from '@abp/ng.core';
-
-export interface BookIssueDto extends EntityDto {
- bookId?: string;
- customerId: number;
-}
-
-export interface BookIssueListDto {
- bookIssueId: number;
- bookName?: string;
- customerName?: string;
- issueDate?: string;
-}
diff --git a/angular/src/app/proxy/books/book-type.enum.ts b/angular/src/app/proxy/books/book-type.enum.ts
deleted file mode 100644
index 61d168f..0000000
--- a/angular/src/app/proxy/books/book-type.enum.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-import { mapEnumToOptions } from '@abp/ng.core';
-
-export enum BookType {
- Undefined = 0,
- Adventure = 1,
- Biography = 2,
- Dystopia = 3,
- Fantastic = 4,
- Horror = 5,
- Science = 6,
- ScienceFiction = 7,
- Poetry = 8,
-}
-
-export const bookTypeOptions = mapEnumToOptions(BookType);
diff --git a/angular/src/app/proxy/books/book.service.ts b/angular/src/app/proxy/books/book.service.ts
deleted file mode 100644
index 3b0dce7..0000000
--- a/angular/src/app/proxy/books/book.service.ts
+++ /dev/null
@@ -1,64 +0,0 @@
-import type { BookDto, CreateUpdateBookDto } from './models';
-import { RestService, Rest } from '@abp/ng.core';
-import type { PagedAndSortedResultRequestDto, PagedResultDto } from '@abp/ng.core';
-import { Injectable } from '@angular/core';
-
-@Injectable({
- providedIn: 'root',
-})
-export class BookService {
- apiName = 'Default';
-
-
- create = (input: CreateUpdateBookDto, config?: Partial) =>
- this.restService.request({
- method: 'POST',
- url: '/api/app/book',
- body: input,
- },
- { apiName: this.apiName,...config });
-
-
- delete = (id: string, config?: Partial) =>
- this.restService.request({
- method: 'DELETE',
- url: `/api/app/book/${id}`,
- },
- { apiName: this.apiName,...config });
-
-
- get = (id: string, config?: Partial) =>
- this.restService.request({
- method: 'GET',
- url: `/api/app/book/${id}`,
- },
- { apiName: this.apiName,...config });
-
-
- getBookDropDown = (config?: Partial) =>
- this.restService.request({
- method: 'GET',
- url: '/api/app/book/book-drop-down',
- },
- { apiName: this.apiName,...config });
-
-
- getList = (input: PagedAndSortedResultRequestDto, config?: Partial) =>
- this.restService.request>({
- method: 'GET',
- url: '/api/app/book',
- params: { sorting: input.sorting, skipCount: input.skipCount, maxResultCount: input.maxResultCount },
- },
- { apiName: this.apiName,...config });
-
-
- update = (id: string, input: CreateUpdateBookDto, config?: Partial) =>
- this.restService.request({
- method: 'PUT',
- url: `/api/app/book/${id}`,
- body: input,
- },
- { apiName: this.apiName,...config });
-
- constructor(private restService: RestService) {}
-}
diff --git a/angular/src/app/proxy/books/index.ts b/angular/src/app/proxy/books/index.ts
deleted file mode 100644
index f536b8f..0000000
--- a/angular/src/app/proxy/books/index.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-export * from './book-type.enum';
-export * from './book.service';
-export * from './models';
diff --git a/angular/src/app/proxy/books/models.ts b/angular/src/app/proxy/books/models.ts
deleted file mode 100644
index e61a8e4..0000000
--- a/angular/src/app/proxy/books/models.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-import type { AuditedEntityDto } from '@abp/ng.core';
-import type { BookType } from './book-type.enum';
-
-export interface BookDto extends AuditedEntityDto {
- name?: string;
- type: BookType;
- publishDate?: string;
- price: number;
-}
-
-export interface CreateUpdateBookDto {
- name: string;
- type: BookType;
- publishDate: string;
- price: number;
-}
diff --git a/angular/src/app/proxy/customers/customer.service.ts b/angular/src/app/proxy/customers/customer.service.ts
deleted file mode 100644
index b90ebf6..0000000
--- a/angular/src/app/proxy/customers/customer.service.ts
+++ /dev/null
@@ -1,63 +0,0 @@
-import type { CustomerDto } from './models';
-import { RestService, Rest } from '@abp/ng.core';
-import type { PagedResultDto } from '@abp/ng.core';
-import { Injectable } from '@angular/core';
-
-@Injectable({
- providedIn: 'root',
-})
-export class CustomerService {
- apiName = 'Default';
-
-
- create = (input: CustomerDto, config?: Partial) =>
- this.restService.request({
- method: 'POST',
- url: '/api/app/customer',
- body: input,
- },
- { apiName: this.apiName,...config });
-
-
- delete = (id: number, config?: Partial) =>
- this.restService.request({
- method: 'DELETE',
- url: `/api/app/customer/${id}`,
- },
- { apiName: this.apiName,...config });
-
-
- get = (id: number, config?: Partial) =>
- this.restService.request({
- method: 'GET',
- url: `/api/app/customer/${id}`,
- },
- { apiName: this.apiName,...config });
-
-
- getList = (config?: Partial) =>
- this.restService.request>({
- method: 'GET',
- url: '/api/app/customer',
- },
- { apiName: this.apiName,...config });
-
-
- getcustomerDropDown = (config?: Partial) =>
- this.restService.request({
- method: 'GET',
- url: '/api/app/customer/customer-drop-down',
- },
- { apiName: this.apiName,...config });
-
-
- update = (id: number, input: CustomerDto, config?: Partial) =>
- this.restService.request({
- method: 'PUT',
- url: `/api/app/customer/${id}`,
- body: input,
- },
- { apiName: this.apiName,...config });
-
- constructor(private restService: RestService) {}
-}
diff --git a/angular/src/app/proxy/customers/index.ts b/angular/src/app/proxy/customers/index.ts
deleted file mode 100644
index a038de9..0000000
--- a/angular/src/app/proxy/customers/index.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-export * from './customer.service';
-export * from './models';
diff --git a/angular/src/app/proxy/customers/models.ts b/angular/src/app/proxy/customers/models.ts
deleted file mode 100644
index 798c315..0000000
--- a/angular/src/app/proxy/customers/models.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import type { EntityDto } from '@abp/ng.core';
-
-export interface CustomerDto extends EntityDto {
- firstName?: string;
- lastName?: string;
- phone?: string;
- address?: string;
-}
diff --git a/angular/src/app/proxy/generate-proxy.json b/angular/src/app/proxy/generate-proxy.json
deleted file mode 100644
index 9e2eb37..0000000
--- a/angular/src/app/proxy/generate-proxy.json
+++ /dev/null
@@ -1,10619 +0,0 @@
-{
- "generated": [
- "app"
- ],
- "modules": {
- "abp": {
- "rootPath": "abp",
- "remoteServiceName": "abp",
- "controllers": {
- "Pages.Abp.MultiTenancy.AbpTenantController": {
- "controllerName": "AbpTenant",
- "controllerGroupName": "AbpTenant",
- "isRemoteService": true,
- "isIntegrationService": false,
- "apiVersion": null,
- "type": "Pages.Abp.MultiTenancy.AbpTenantController",
- "interfaces": [
- {
- "type": "Volo.Abp.AspNetCore.Mvc.MultiTenancy.IAbpTenantAppService",
- "name": "IAbpTenantAppService",
- "methods": [
- {
- "name": "FindTenantByNameAsync",
- "parametersOnMethod": [
- {
- "name": "name",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.AspNetCore.Mvc.MultiTenancy.FindTenantResultDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.MultiTenancy.FindTenantResultDto"
- }
- },
- {
- "name": "FindTenantByIdAsync",
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.AspNetCore.Mvc.MultiTenancy.FindTenantResultDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.MultiTenancy.FindTenantResultDto"
- }
- }
- ]
- }
- ],
- "actions": {
- "FindTenantByNameAsyncByName": {
- "uniqueName": "FindTenantByNameAsyncByName",
- "name": "FindTenantByNameAsync",
- "httpMethod": "GET",
- "url": "api/abp/multi-tenancy/tenants/by-name/{name}",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "name",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "name",
- "name": "name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": [],
- "bindingSourceId": "Path",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.AspNetCore.Mvc.MultiTenancy.FindTenantResultDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.MultiTenancy.FindTenantResultDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.AspNetCore.Mvc.MultiTenancy.IAbpTenantAppService"
- },
- "FindTenantByIdAsyncById": {
- "uniqueName": "FindTenantByIdAsyncById",
- "name": "FindTenantByIdAsync",
- "httpMethod": "GET",
- "url": "api/abp/multi-tenancy/tenants/by-id/{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.AspNetCore.Mvc.MultiTenancy.FindTenantResultDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.MultiTenancy.FindTenantResultDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.AspNetCore.Mvc.MultiTenancy.IAbpTenantAppService"
- }
- }
- },
- "Volo.Abp.AspNetCore.Mvc.ApiExploring.AbpApiDefinitionController": {
- "controllerName": "AbpApiDefinition",
- "controllerGroupName": "AbpApiDefinition",
- "isRemoteService": true,
- "isIntegrationService": false,
- "apiVersion": null,
- "type": "Volo.Abp.AspNetCore.Mvc.ApiExploring.AbpApiDefinitionController",
- "interfaces": [],
- "actions": {
- "GetByModel": {
- "uniqueName": "GetByModel",
- "name": "Get",
- "httpMethod": "GET",
- "url": "api/abp/api-definition",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "model",
- "typeAsString": "Volo.Abp.Http.Modeling.ApplicationApiDescriptionModelRequestDto, Volo.Abp.Http",
- "type": "Volo.Abp.Http.Modeling.ApplicationApiDescriptionModelRequestDto",
- "typeSimple": "Volo.Abp.Http.Modeling.ApplicationApiDescriptionModelRequestDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "model",
- "name": "IncludeTypes",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "ModelBinding",
- "descriptorName": "model"
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Http.Modeling.ApplicationApiDescriptionModel",
- "typeSimple": "Volo.Abp.Http.Modeling.ApplicationApiDescriptionModel"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.AspNetCore.Mvc.ApiExploring.AbpApiDefinitionController"
- }
- }
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController": {
- "controllerName": "AbpApplicationConfiguration",
- "controllerGroupName": "AbpApplicationConfiguration",
- "isRemoteService": true,
- "isIntegrationService": false,
- "apiVersion": null,
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController",
- "interfaces": [
- {
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.IAbpApplicationConfigurationAppService",
- "name": "IAbpApplicationConfigurationAppService",
- "methods": [
- {
- "name": "GetAsync",
- "parametersOnMethod": [
- {
- "name": "options",
- "typeAsString": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationRequestOptions, Volo.Abp.AspNetCore.Mvc.Contracts",
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationRequestOptions",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationRequestOptions",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto"
- }
- }
- ]
- }
- ],
- "actions": {
- "GetAsyncByOptions": {
- "uniqueName": "GetAsyncByOptions",
- "name": "GetAsync",
- "httpMethod": "GET",
- "url": "api/abp/application-configuration",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "options",
- "typeAsString": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationRequestOptions, Volo.Abp.AspNetCore.Mvc.Contracts",
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationRequestOptions",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationRequestOptions",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "options",
- "name": "IncludeLocalizationResources",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "ModelBinding",
- "descriptorName": "options"
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.IAbpApplicationConfigurationAppService"
- }
- }
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationLocalizationController": {
- "controllerName": "AbpApplicationLocalization",
- "controllerGroupName": "AbpApplicationLocalization",
- "isRemoteService": true,
- "isIntegrationService": false,
- "apiVersion": null,
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationLocalizationController",
- "interfaces": [
- {
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.IAbpApplicationLocalizationAppService",
- "name": "IAbpApplicationLocalizationAppService",
- "methods": [
- {
- "name": "GetAsync",
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationRequestDto, Volo.Abp.AspNetCore.Mvc.Contracts",
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationRequestDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationRequestDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationDto"
- }
- }
- ]
- }
- ],
- "actions": {
- "GetAsyncByInput": {
- "uniqueName": "GetAsyncByInput",
- "name": "GetAsync",
- "httpMethod": "GET",
- "url": "api/abp/application-localization",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationRequestDto, Volo.Abp.AspNetCore.Mvc.Contracts",
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationRequestDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationRequestDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "input",
- "name": "CultureName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "ModelBinding",
- "descriptorName": "input"
- },
- {
- "nameOnMethod": "input",
- "name": "OnlyDynamics",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "ModelBinding",
- "descriptorName": "input"
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.IAbpApplicationLocalizationAppService"
- }
- }
- }
- }
- },
- "account": {
- "rootPath": "account",
- "remoteServiceName": "AbpAccount",
- "controllers": {
- "Volo.Abp.Account.AccountController": {
- "controllerName": "Account",
- "controllerGroupName": "Account",
- "isRemoteService": true,
- "isIntegrationService": false,
- "apiVersion": null,
- "type": "Volo.Abp.Account.AccountController",
- "interfaces": [
- {
- "type": "Volo.Abp.Account.IAccountAppService",
- "name": "IAccountAppService",
- "methods": [
- {
- "name": "RegisterAsync",
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Account.RegisterDto, Volo.Abp.Account.Application.Contracts",
- "type": "Volo.Abp.Account.RegisterDto",
- "typeSimple": "Volo.Abp.Account.RegisterDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Identity.IdentityUserDto",
- "typeSimple": "Volo.Abp.Identity.IdentityUserDto"
- }
- },
- {
- "name": "SendPasswordResetCodeAsync",
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Account.SendPasswordResetCodeDto, Volo.Abp.Account.Application.Contracts",
- "type": "Volo.Abp.Account.SendPasswordResetCodeDto",
- "typeSimple": "Volo.Abp.Account.SendPasswordResetCodeDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- }
- },
- {
- "name": "VerifyPasswordResetTokenAsync",
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Account.VerifyPasswordResetTokenInput, Volo.Abp.Account.Application.Contracts",
- "type": "Volo.Abp.Account.VerifyPasswordResetTokenInput",
- "typeSimple": "Volo.Abp.Account.VerifyPasswordResetTokenInput",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "System.Boolean",
- "typeSimple": "boolean"
- }
- },
- {
- "name": "ResetPasswordAsync",
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Account.ResetPasswordDto, Volo.Abp.Account.Application.Contracts",
- "type": "Volo.Abp.Account.ResetPasswordDto",
- "typeSimple": "Volo.Abp.Account.ResetPasswordDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- }
- }
- ]
- }
- ],
- "actions": {
- "RegisterAsyncByInput": {
- "uniqueName": "RegisterAsyncByInput",
- "name": "RegisterAsync",
- "httpMethod": "POST",
- "url": "api/account/register",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Account.RegisterDto, Volo.Abp.Account.Application.Contracts",
- "type": "Volo.Abp.Account.RegisterDto",
- "typeSimple": "Volo.Abp.Account.RegisterDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "input",
- "name": "input",
- "jsonName": null,
- "type": "Volo.Abp.Account.RegisterDto",
- "typeSimple": "Volo.Abp.Account.RegisterDto",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "Body",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Identity.IdentityUserDto",
- "typeSimple": "Volo.Abp.Identity.IdentityUserDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Account.IAccountAppService"
- },
- "SendPasswordResetCodeAsyncByInput": {
- "uniqueName": "SendPasswordResetCodeAsyncByInput",
- "name": "SendPasswordResetCodeAsync",
- "httpMethod": "POST",
- "url": "api/account/send-password-reset-code",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Account.SendPasswordResetCodeDto, Volo.Abp.Account.Application.Contracts",
- "type": "Volo.Abp.Account.SendPasswordResetCodeDto",
- "typeSimple": "Volo.Abp.Account.SendPasswordResetCodeDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "input",
- "name": "input",
- "jsonName": null,
- "type": "Volo.Abp.Account.SendPasswordResetCodeDto",
- "typeSimple": "Volo.Abp.Account.SendPasswordResetCodeDto",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "Body",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Account.IAccountAppService"
- },
- "VerifyPasswordResetTokenAsyncByInput": {
- "uniqueName": "VerifyPasswordResetTokenAsyncByInput",
- "name": "VerifyPasswordResetTokenAsync",
- "httpMethod": "POST",
- "url": "api/account/verify-password-reset-token",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Account.VerifyPasswordResetTokenInput, Volo.Abp.Account.Application.Contracts",
- "type": "Volo.Abp.Account.VerifyPasswordResetTokenInput",
- "typeSimple": "Volo.Abp.Account.VerifyPasswordResetTokenInput",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "input",
- "name": "input",
- "jsonName": null,
- "type": "Volo.Abp.Account.VerifyPasswordResetTokenInput",
- "typeSimple": "Volo.Abp.Account.VerifyPasswordResetTokenInput",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "Body",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "System.Boolean",
- "typeSimple": "boolean"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Account.IAccountAppService"
- },
- "ResetPasswordAsyncByInput": {
- "uniqueName": "ResetPasswordAsyncByInput",
- "name": "ResetPasswordAsync",
- "httpMethod": "POST",
- "url": "api/account/reset-password",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Account.ResetPasswordDto, Volo.Abp.Account.Application.Contracts",
- "type": "Volo.Abp.Account.ResetPasswordDto",
- "typeSimple": "Volo.Abp.Account.ResetPasswordDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "input",
- "name": "input",
- "jsonName": null,
- "type": "Volo.Abp.Account.ResetPasswordDto",
- "typeSimple": "Volo.Abp.Account.ResetPasswordDto",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "Body",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Account.IAccountAppService"
- }
- }
- },
- "Volo.Abp.Account.DynamicClaimsController": {
- "controllerName": "DynamicClaims",
- "controllerGroupName": "DynamicClaims",
- "isRemoteService": true,
- "isIntegrationService": false,
- "apiVersion": null,
- "type": "Volo.Abp.Account.DynamicClaimsController",
- "interfaces": [
- {
- "type": "Volo.Abp.Account.IDynamicClaimsAppService",
- "name": "IDynamicClaimsAppService",
- "methods": [
- {
- "name": "RefreshAsync",
- "parametersOnMethod": [],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- }
- }
- ]
- }
- ],
- "actions": {
- "RefreshAsync": {
- "uniqueName": "RefreshAsync",
- "name": "RefreshAsync",
- "httpMethod": "POST",
- "url": "api/account/dynamic-claims/refresh",
- "supportedVersions": [],
- "parametersOnMethod": [],
- "parameters": [],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Account.IDynamicClaimsAppService"
- }
- }
- },
- "Volo.Abp.Account.ProfileController": {
- "controllerName": "Profile",
- "controllerGroupName": "Profile",
- "isRemoteService": true,
- "isIntegrationService": false,
- "apiVersion": null,
- "type": "Volo.Abp.Account.ProfileController",
- "interfaces": [
- {
- "type": "Volo.Abp.Account.IProfileAppService",
- "name": "IProfileAppService",
- "methods": [
- {
- "name": "GetAsync",
- "parametersOnMethod": [],
- "returnValue": {
- "type": "Volo.Abp.Account.ProfileDto",
- "typeSimple": "Volo.Abp.Account.ProfileDto"
- }
- },
- {
- "name": "UpdateAsync",
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Account.UpdateProfileDto, Volo.Abp.Account.Application.Contracts",
- "type": "Volo.Abp.Account.UpdateProfileDto",
- "typeSimple": "Volo.Abp.Account.UpdateProfileDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Account.ProfileDto",
- "typeSimple": "Volo.Abp.Account.ProfileDto"
- }
- },
- {
- "name": "ChangePasswordAsync",
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Account.ChangePasswordInput, Volo.Abp.Account.Application.Contracts",
- "type": "Volo.Abp.Account.ChangePasswordInput",
- "typeSimple": "Volo.Abp.Account.ChangePasswordInput",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- }
- }
- ]
- }
- ],
- "actions": {
- "GetAsync": {
- "uniqueName": "GetAsync",
- "name": "GetAsync",
- "httpMethod": "GET",
- "url": "api/account/my-profile",
- "supportedVersions": [],
- "parametersOnMethod": [],
- "parameters": [],
- "returnValue": {
- "type": "Volo.Abp.Account.ProfileDto",
- "typeSimple": "Volo.Abp.Account.ProfileDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Account.IProfileAppService"
- },
- "UpdateAsyncByInput": {
- "uniqueName": "UpdateAsyncByInput",
- "name": "UpdateAsync",
- "httpMethod": "PUT",
- "url": "api/account/my-profile",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Account.UpdateProfileDto, Volo.Abp.Account.Application.Contracts",
- "type": "Volo.Abp.Account.UpdateProfileDto",
- "typeSimple": "Volo.Abp.Account.UpdateProfileDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "input",
- "name": "input",
- "jsonName": null,
- "type": "Volo.Abp.Account.UpdateProfileDto",
- "typeSimple": "Volo.Abp.Account.UpdateProfileDto",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "Body",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Account.ProfileDto",
- "typeSimple": "Volo.Abp.Account.ProfileDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Account.IProfileAppService"
- },
- "ChangePasswordAsyncByInput": {
- "uniqueName": "ChangePasswordAsyncByInput",
- "name": "ChangePasswordAsync",
- "httpMethod": "POST",
- "url": "api/account/my-profile/change-password",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Account.ChangePasswordInput, Volo.Abp.Account.Application.Contracts",
- "type": "Volo.Abp.Account.ChangePasswordInput",
- "typeSimple": "Volo.Abp.Account.ChangePasswordInput",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "input",
- "name": "input",
- "jsonName": null,
- "type": "Volo.Abp.Account.ChangePasswordInput",
- "typeSimple": "Volo.Abp.Account.ChangePasswordInput",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "Body",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Account.IProfileAppService"
- }
- }
- },
- "Volo.Abp.Account.Web.Areas.Account.Controllers.AccountController": {
- "controllerName": "Account",
- "controllerGroupName": "Login",
- "isRemoteService": true,
- "isIntegrationService": false,
- "apiVersion": null,
- "type": "Volo.Abp.Account.Web.Areas.Account.Controllers.AccountController",
- "interfaces": [],
- "actions": {
- "LoginByLogin": {
- "uniqueName": "LoginByLogin",
- "name": "Login",
- "httpMethod": "POST",
- "url": "api/account/login",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "login",
- "typeAsString": "Volo.Abp.Account.Web.Areas.Account.Controllers.Models.UserLoginInfo, Volo.Abp.Account.Web",
- "type": "Volo.Abp.Account.Web.Areas.Account.Controllers.Models.UserLoginInfo",
- "typeSimple": "Volo.Abp.Account.Web.Areas.Account.Controllers.Models.UserLoginInfo",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "login",
- "name": "login",
- "jsonName": null,
- "type": "Volo.Abp.Account.Web.Areas.Account.Controllers.Models.UserLoginInfo",
- "typeSimple": "Volo.Abp.Account.Web.Areas.Account.Controllers.Models.UserLoginInfo",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "Body",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Account.Web.Areas.Account.Controllers.Models.AbpLoginResult",
- "typeSimple": "Volo.Abp.Account.Web.Areas.Account.Controllers.Models.AbpLoginResult"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Account.Web.Areas.Account.Controllers.AccountController"
- },
- "Logout": {
- "uniqueName": "Logout",
- "name": "Logout",
- "httpMethod": "GET",
- "url": "api/account/logout",
- "supportedVersions": [],
- "parametersOnMethod": [],
- "parameters": [],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Account.Web.Areas.Account.Controllers.AccountController"
- },
- "CheckPasswordByLogin": {
- "uniqueName": "CheckPasswordByLogin",
- "name": "CheckPassword",
- "httpMethod": "POST",
- "url": "api/account/check-password",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "login",
- "typeAsString": "Volo.Abp.Account.Web.Areas.Account.Controllers.Models.UserLoginInfo, Volo.Abp.Account.Web",
- "type": "Volo.Abp.Account.Web.Areas.Account.Controllers.Models.UserLoginInfo",
- "typeSimple": "Volo.Abp.Account.Web.Areas.Account.Controllers.Models.UserLoginInfo",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "login",
- "name": "login",
- "jsonName": null,
- "type": "Volo.Abp.Account.Web.Areas.Account.Controllers.Models.UserLoginInfo",
- "typeSimple": "Volo.Abp.Account.Web.Areas.Account.Controllers.Models.UserLoginInfo",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "Body",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Account.Web.Areas.Account.Controllers.Models.AbpLoginResult",
- "typeSimple": "Volo.Abp.Account.Web.Areas.Account.Controllers.Models.AbpLoginResult"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Account.Web.Areas.Account.Controllers.AccountController"
- }
- }
- }
- }
- },
- "app": {
- "rootPath": "app",
- "remoteServiceName": "Default",
- "controllers": {
- "Acme.BookStore.Authors.AuthorAppService": {
- "controllerName": "Author",
- "controllerGroupName": "Author",
- "isRemoteService": true,
- "isIntegrationService": false,
- "apiVersion": null,
- "type": "Acme.BookStore.Authors.AuthorAppService",
- "interfaces": [
- {
- "type": "Acme.BookStore.Authors.IAuthorAppService",
- "name": "IAuthorAppService",
- "methods": [
- {
- "name": "GetAsync",
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Acme.BookStore.Authors.AuthorDto",
- "typeSimple": "Acme.BookStore.Authors.AuthorDto"
- }
- },
- {
- "name": "GetListAsync",
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Acme.BookStore.Authors.GetAuthorListDto, Acme.BookStore.Application.Contracts",
- "type": "Acme.BookStore.Authors.GetAuthorListDto",
- "typeSimple": "Acme.BookStore.Authors.GetAuthorListDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Application.Dtos.PagedResultDto",
- "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto"
- }
- },
- {
- "name": "CreateAsync",
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Acme.BookStore.Authors.CreateAuthorDto, Acme.BookStore.Application.Contracts",
- "type": "Acme.BookStore.Authors.CreateAuthorDto",
- "typeSimple": "Acme.BookStore.Authors.CreateAuthorDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Acme.BookStore.Authors.AuthorDto",
- "typeSimple": "Acme.BookStore.Authors.AuthorDto"
- }
- },
- {
- "name": "UpdateAsync",
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "input",
- "typeAsString": "Acme.BookStore.Authors.UpdateAuthorDto, Acme.BookStore.Application.Contracts",
- "type": "Acme.BookStore.Authors.UpdateAuthorDto",
- "typeSimple": "Acme.BookStore.Authors.UpdateAuthorDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- }
- },
- {
- "name": "DeleteAsync",
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- }
- }
- ]
- }
- ],
- "actions": {
- "GetAsyncById": {
- "uniqueName": "GetAsyncById",
- "name": "GetAsync",
- "httpMethod": "GET",
- "url": "api/app/author/{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": "Acme.BookStore.Authors.AuthorDto",
- "typeSimple": "Acme.BookStore.Authors.AuthorDto"
- },
- "allowAnonymous": false,
- "implementFrom": "Acme.BookStore.Authors.IAuthorAppService"
- },
- "GetListAsyncByInput": {
- "uniqueName": "GetListAsyncByInput",
- "name": "GetListAsync",
- "httpMethod": "GET",
- "url": "api/app/author",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Acme.BookStore.Authors.GetAuthorListDto, Acme.BookStore.Application.Contracts",
- "type": "Acme.BookStore.Authors.GetAuthorListDto",
- "typeSimple": "Acme.BookStore.Authors.GetAuthorListDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "input",
- "name": "Filter",
- "jsonName": null,
- "type": "System.String",
- "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",
- "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto"
- },
- "allowAnonymous": false,
- "implementFrom": "Acme.BookStore.Authors.IAuthorAppService"
- },
- "CreateAsyncByInput": {
- "uniqueName": "CreateAsyncByInput",
- "name": "CreateAsync",
- "httpMethod": "POST",
- "url": "api/app/author",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Acme.BookStore.Authors.CreateAuthorDto, Acme.BookStore.Application.Contracts",
- "type": "Acme.BookStore.Authors.CreateAuthorDto",
- "typeSimple": "Acme.BookStore.Authors.CreateAuthorDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "input",
- "name": "input",
- "jsonName": null,
- "type": "Acme.BookStore.Authors.CreateAuthorDto",
- "typeSimple": "Acme.BookStore.Authors.CreateAuthorDto",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "Body",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "Acme.BookStore.Authors.AuthorDto",
- "typeSimple": "Acme.BookStore.Authors.AuthorDto"
- },
- "allowAnonymous": false,
- "implementFrom": "Acme.BookStore.Authors.IAuthorAppService"
- },
- "UpdateAsyncByIdAndInput": {
- "uniqueName": "UpdateAsyncByIdAndInput",
- "name": "UpdateAsync",
- "httpMethod": "PUT",
- "url": "api/app/author/{id}",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "input",
- "typeAsString": "Acme.BookStore.Authors.UpdateAuthorDto, Acme.BookStore.Application.Contracts",
- "type": "Acme.BookStore.Authors.UpdateAuthorDto",
- "typeSimple": "Acme.BookStore.Authors.UpdateAuthorDto",
- "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": "Acme.BookStore.Authors.UpdateAuthorDto",
- "typeSimple": "Acme.BookStore.Authors.UpdateAuthorDto",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "Body",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- },
- "allowAnonymous": false,
- "implementFrom": "Acme.BookStore.Authors.IAuthorAppService"
- },
- "DeleteAsyncById": {
- "uniqueName": "DeleteAsyncById",
- "name": "DeleteAsync",
- "httpMethod": "DELETE",
- "url": "api/app/author/{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": "System.Void",
- "typeSimple": "System.Void"
- },
- "allowAnonymous": false,
- "implementFrom": "Acme.BookStore.Authors.IAuthorAppService"
- }
- }
- },
- "Acme.BookStore.BookIssued.BookIssueAppService": {
- "controllerName": "BookIssue",
- "controllerGroupName": "BookIssue",
- "isRemoteService": true,
- "isIntegrationService": false,
- "apiVersion": null,
- "type": "Acme.BookStore.BookIssued.BookIssueAppService",
- "interfaces": [
- {
- "type": "Acme.BookStore.BookIssued.IBookIssueAppService",
- "name": "IBookIssueAppService",
- "methods": [
- {
- "name": "GetAsync",
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Int32, System.Private.CoreLib",
- "type": "System.Int32",
- "typeSimple": "number",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Acme.BookStore.BookIssued.BookIssueDto",
- "typeSimple": "Acme.BookStore.BookIssued.BookIssueDto"
- }
- },
- {
- "name": "GetListAsync",
- "parametersOnMethod": [],
- "returnValue": {
- "type": "Volo.Abp.Application.Dtos.PagedResultDto",
- "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto"
- }
- },
- {
- "name": "CreateAsync",
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Acme.BookStore.BookIssued.BookIssueDto, Acme.BookStore.Application.Contracts",
- "type": "Acme.BookStore.BookIssued.BookIssueDto",
- "typeSimple": "Acme.BookStore.BookIssued.BookIssueDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Acme.BookStore.BookIssued.BookIssueDto",
- "typeSimple": "Acme.BookStore.BookIssued.BookIssueDto"
- }
- },
- {
- "name": "UpdateAsync",
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Int32, System.Private.CoreLib",
- "type": "System.Int32",
- "typeSimple": "number",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "input",
- "typeAsString": "Acme.BookStore.BookIssued.BookIssueDto, Acme.BookStore.Application.Contracts",
- "type": "Acme.BookStore.BookIssued.BookIssueDto",
- "typeSimple": "Acme.BookStore.BookIssued.BookIssueDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- }
- },
- {
- "name": "DeleteAsync",
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Int32, System.Private.CoreLib",
- "type": "System.Int32",
- "typeSimple": "number",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- }
- }
- ]
- }
- ],
- "actions": {
- "GetAsyncById": {
- "uniqueName": "GetAsyncById",
- "name": "GetAsync",
- "httpMethod": "GET",
- "url": "api/app/book-issue/{id}",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Int32, System.Private.CoreLib",
- "type": "System.Int32",
- "typeSimple": "number",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "id",
- "name": "id",
- "jsonName": null,
- "type": "System.Int32",
- "typeSimple": "number",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": [],
- "bindingSourceId": "Path",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "Acme.BookStore.BookIssued.BookIssueDto",
- "typeSimple": "Acme.BookStore.BookIssued.BookIssueDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Acme.BookStore.BookIssued.IBookIssueAppService"
- },
- "GetListAsync": {
- "uniqueName": "GetListAsync",
- "name": "GetListAsync",
- "httpMethod": "GET",
- "url": "api/app/book-issue",
- "supportedVersions": [],
- "parametersOnMethod": [],
- "parameters": [],
- "returnValue": {
- "type": "Volo.Abp.Application.Dtos.PagedResultDto",
- "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Acme.BookStore.BookIssued.IBookIssueAppService"
- },
- "CreateAsyncByInput": {
- "uniqueName": "CreateAsyncByInput",
- "name": "CreateAsync",
- "httpMethod": "POST",
- "url": "api/app/book-issue",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Acme.BookStore.BookIssued.BookIssueDto, Acme.BookStore.Application.Contracts",
- "type": "Acme.BookStore.BookIssued.BookIssueDto",
- "typeSimple": "Acme.BookStore.BookIssued.BookIssueDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "input",
- "name": "input",
- "jsonName": null,
- "type": "Acme.BookStore.BookIssued.BookIssueDto",
- "typeSimple": "Acme.BookStore.BookIssued.BookIssueDto",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "Body",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "Acme.BookStore.BookIssued.BookIssueDto",
- "typeSimple": "Acme.BookStore.BookIssued.BookIssueDto"
- },
- "allowAnonymous": false,
- "implementFrom": "Acme.BookStore.BookIssued.IBookIssueAppService"
- },
- "UpdateAsyncByIdAndInput": {
- "uniqueName": "UpdateAsyncByIdAndInput",
- "name": "UpdateAsync",
- "httpMethod": "PUT",
- "url": "api/app/book-issue/{id}",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Int32, System.Private.CoreLib",
- "type": "System.Int32",
- "typeSimple": "number",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "input",
- "typeAsString": "Acme.BookStore.BookIssued.BookIssueDto, Acme.BookStore.Application.Contracts",
- "type": "Acme.BookStore.BookIssued.BookIssueDto",
- "typeSimple": "Acme.BookStore.BookIssued.BookIssueDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "id",
- "name": "id",
- "jsonName": null,
- "type": "System.Int32",
- "typeSimple": "number",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": [],
- "bindingSourceId": "Path",
- "descriptorName": ""
- },
- {
- "nameOnMethod": "input",
- "name": "input",
- "jsonName": null,
- "type": "Acme.BookStore.BookIssued.BookIssueDto",
- "typeSimple": "Acme.BookStore.BookIssued.BookIssueDto",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "Body",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- },
- "allowAnonymous": false,
- "implementFrom": "Acme.BookStore.BookIssued.IBookIssueAppService"
- },
- "DeleteAsyncById": {
- "uniqueName": "DeleteAsyncById",
- "name": "DeleteAsync",
- "httpMethod": "DELETE",
- "url": "api/app/book-issue/{id}",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Int32, System.Private.CoreLib",
- "type": "System.Int32",
- "typeSimple": "number",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "id",
- "name": "id",
- "jsonName": null,
- "type": "System.Int32",
- "typeSimple": "number",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": [],
- "bindingSourceId": "Path",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- },
- "allowAnonymous": false,
- "implementFrom": "Acme.BookStore.BookIssued.IBookIssueAppService"
- }
- }
- },
- "Acme.BookStore.Books.BookAppService": {
- "controllerName": "Book",
- "controllerGroupName": "Book",
- "isRemoteService": true,
- "isIntegrationService": false,
- "apiVersion": null,
- "type": "Acme.BookStore.Books.BookAppService",
- "interfaces": [
- {
- "type": "Acme.BookStore.Books.IBookAppService",
- "name": "IBookAppService",
- "methods": [
- {
- "name": "GetBookDropDown",
- "parametersOnMethod": [],
- "returnValue": {
- "type": "System.Collections.Generic.List",
- "typeSimple": "[Acme.BookStore.Books.BookDto]"
- }
- },
- {
- "name": "GetAsync",
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Acme.BookStore.Books.BookDto",
- "typeSimple": "Acme.BookStore.Books.BookDto"
- }
- },
- {
- "name": "GetListAsync",
- "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
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Application.Dtos.PagedResultDto",
- "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto"
- }
- },
- {
- "name": "CreateAsync",
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Acme.BookStore.Books.CreateUpdateBookDto, Acme.BookStore.Application.Contracts",
- "type": "Acme.BookStore.Books.CreateUpdateBookDto",
- "typeSimple": "Acme.BookStore.Books.CreateUpdateBookDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Acme.BookStore.Books.BookDto",
- "typeSimple": "Acme.BookStore.Books.BookDto"
- }
- },
- {
- "name": "UpdateAsync",
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "input",
- "typeAsString": "Acme.BookStore.Books.CreateUpdateBookDto, Acme.BookStore.Application.Contracts",
- "type": "Acme.BookStore.Books.CreateUpdateBookDto",
- "typeSimple": "Acme.BookStore.Books.CreateUpdateBookDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Acme.BookStore.Books.BookDto",
- "typeSimple": "Acme.BookStore.Books.BookDto"
- }
- },
- {
- "name": "DeleteAsync",
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- }
- }
- ]
- }
- ],
- "actions": {
- "GetBookDropDown": {
- "uniqueName": "GetBookDropDown",
- "name": "GetBookDropDown",
- "httpMethod": "GET",
- "url": "api/app/book/book-drop-down",
- "supportedVersions": [],
- "parametersOnMethod": [],
- "parameters": [],
- "returnValue": {
- "type": "System.Collections.Generic.List",
- "typeSimple": "[Acme.BookStore.Books.BookDto]"
- },
- "allowAnonymous": null,
- "implementFrom": "Acme.BookStore.Books.IBookAppService"
- },
- "CreateAsyncByInput": {
- "uniqueName": "CreateAsyncByInput",
- "name": "CreateAsync",
- "httpMethod": "POST",
- "url": "api/app/book",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Acme.BookStore.Books.CreateUpdateBookDto, Acme.BookStore.Application.Contracts",
- "type": "Acme.BookStore.Books.CreateUpdateBookDto",
- "typeSimple": "Acme.BookStore.Books.CreateUpdateBookDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "input",
- "name": "input",
- "jsonName": null,
- "type": "Acme.BookStore.Books.CreateUpdateBookDto",
- "typeSimple": "Acme.BookStore.Books.CreateUpdateBookDto",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "Body",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "Acme.BookStore.Books.BookDto",
- "typeSimple": "Acme.BookStore.Books.BookDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Application.Services.ICreateAppService"
- },
- "UpdateAsyncByIdAndInput": {
- "uniqueName": "UpdateAsyncByIdAndInput",
- "name": "UpdateAsync",
- "httpMethod": "PUT",
- "url": "api/app/book/{id}",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "input",
- "typeAsString": "Acme.BookStore.Books.CreateUpdateBookDto, Acme.BookStore.Application.Contracts",
- "type": "Acme.BookStore.Books.CreateUpdateBookDto",
- "typeSimple": "Acme.BookStore.Books.CreateUpdateBookDto",
- "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": "Acme.BookStore.Books.CreateUpdateBookDto",
- "typeSimple": "Acme.BookStore.Books.CreateUpdateBookDto",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "Body",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "Acme.BookStore.Books.BookDto",
- "typeSimple": "Acme.BookStore.Books.BookDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Application.Services.IUpdateAppService"
- },
- "DeleteAsyncById": {
- "uniqueName": "DeleteAsyncById",
- "name": "DeleteAsync",
- "httpMethod": "DELETE",
- "url": "api/app/book/{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": "System.Void",
- "typeSimple": "System.Void"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Application.Services.IDeleteAppService"
- },
- "GetAsyncById": {
- "uniqueName": "GetAsyncById",
- "name": "GetAsync",
- "httpMethod": "GET",
- "url": "api/app/book/{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": "Acme.BookStore.Books.BookDto",
- "typeSimple": "Acme.BookStore.Books.BookDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Application.Services.IReadOnlyAppService"
- },
- "GetListAsyncByInput": {
- "uniqueName": "GetListAsyncByInput",
- "name": "GetListAsync",
- "httpMethod": "GET",
- "url": "api/app/book",
- "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": "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",
- "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Application.Services.IReadOnlyAppService"
- }
- }
- },
- "Acme.BookStore.Customers.CustomerAppService": {
- "controllerName": "Customer",
- "controllerGroupName": "Customer",
- "isRemoteService": true,
- "isIntegrationService": false,
- "apiVersion": null,
- "type": "Acme.BookStore.Customers.CustomerAppService",
- "interfaces": [
- {
- "type": "Acme.BookStore.Customers.ICustomerAppService",
- "name": "ICustomerAppService",
- "methods": [
- {
- "name": "GetAsync",
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Int32, System.Private.CoreLib",
- "type": "System.Int32",
- "typeSimple": "number",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Acme.BookStore.Customers.CustomerDto",
- "typeSimple": "Acme.BookStore.Customers.CustomerDto"
- }
- },
- {
- "name": "GetListAsync",
- "parametersOnMethod": [],
- "returnValue": {
- "type": "Volo.Abp.Application.Dtos.PagedResultDto",
- "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto"
- }
- },
- {
- "name": "CreateAsync",
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Acme.BookStore.Customers.CustomerDto, Acme.BookStore.Application.Contracts",
- "type": "Acme.BookStore.Customers.CustomerDto",
- "typeSimple": "Acme.BookStore.Customers.CustomerDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Acme.BookStore.Customers.CustomerDto",
- "typeSimple": "Acme.BookStore.Customers.CustomerDto"
- }
- },
- {
- "name": "UpdateAsync",
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Int32, System.Private.CoreLib",
- "type": "System.Int32",
- "typeSimple": "number",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "input",
- "typeAsString": "Acme.BookStore.Customers.CustomerDto, Acme.BookStore.Application.Contracts",
- "type": "Acme.BookStore.Customers.CustomerDto",
- "typeSimple": "Acme.BookStore.Customers.CustomerDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- }
- },
- {
- "name": "DeleteAsync",
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Int32, System.Private.CoreLib",
- "type": "System.Int32",
- "typeSimple": "number",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- }
- },
- {
- "name": "GetcustomerDropDown",
- "parametersOnMethod": [],
- "returnValue": {
- "type": "System.Collections.Generic.List",
- "typeSimple": "[Acme.BookStore.Customers.CustomerDto]"
- }
- }
- ]
- }
- ],
- "actions": {
- "GetAsyncById": {
- "uniqueName": "GetAsyncById",
- "name": "GetAsync",
- "httpMethod": "GET",
- "url": "api/app/customer/{id}",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Int32, System.Private.CoreLib",
- "type": "System.Int32",
- "typeSimple": "number",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "id",
- "name": "id",
- "jsonName": null,
- "type": "System.Int32",
- "typeSimple": "number",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": [],
- "bindingSourceId": "Path",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "Acme.BookStore.Customers.CustomerDto",
- "typeSimple": "Acme.BookStore.Customers.CustomerDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Acme.BookStore.Customers.ICustomerAppService"
- },
- "GetcustomerDropDown": {
- "uniqueName": "GetcustomerDropDown",
- "name": "GetcustomerDropDown",
- "httpMethod": "GET",
- "url": "api/app/customer/customer-drop-down",
- "supportedVersions": [],
- "parametersOnMethod": [],
- "parameters": [],
- "returnValue": {
- "type": "System.Collections.Generic.List",
- "typeSimple": "[Acme.BookStore.Customers.CustomerDto]"
- },
- "allowAnonymous": null,
- "implementFrom": "Acme.BookStore.Customers.ICustomerAppService"
- },
- "GetListAsync": {
- "uniqueName": "GetListAsync",
- "name": "GetListAsync",
- "httpMethod": "GET",
- "url": "api/app/customer",
- "supportedVersions": [],
- "parametersOnMethod": [],
- "parameters": [],
- "returnValue": {
- "type": "Volo.Abp.Application.Dtos.PagedResultDto",
- "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Acme.BookStore.Customers.ICustomerAppService"
- },
- "CreateAsyncByInput": {
- "uniqueName": "CreateAsyncByInput",
- "name": "CreateAsync",
- "httpMethod": "POST",
- "url": "api/app/customer",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Acme.BookStore.Customers.CustomerDto, Acme.BookStore.Application.Contracts",
- "type": "Acme.BookStore.Customers.CustomerDto",
- "typeSimple": "Acme.BookStore.Customers.CustomerDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "input",
- "name": "input",
- "jsonName": null,
- "type": "Acme.BookStore.Customers.CustomerDto",
- "typeSimple": "Acme.BookStore.Customers.CustomerDto",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "Body",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "Acme.BookStore.Customers.CustomerDto",
- "typeSimple": "Acme.BookStore.Customers.CustomerDto"
- },
- "allowAnonymous": false,
- "implementFrom": "Acme.BookStore.Customers.ICustomerAppService"
- },
- "UpdateAsyncByIdAndInput": {
- "uniqueName": "UpdateAsyncByIdAndInput",
- "name": "UpdateAsync",
- "httpMethod": "PUT",
- "url": "api/app/customer/{id}",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Int32, System.Private.CoreLib",
- "type": "System.Int32",
- "typeSimple": "number",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "input",
- "typeAsString": "Acme.BookStore.Customers.CustomerDto, Acme.BookStore.Application.Contracts",
- "type": "Acme.BookStore.Customers.CustomerDto",
- "typeSimple": "Acme.BookStore.Customers.CustomerDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "id",
- "name": "id",
- "jsonName": null,
- "type": "System.Int32",
- "typeSimple": "number",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": [],
- "bindingSourceId": "Path",
- "descriptorName": ""
- },
- {
- "nameOnMethod": "input",
- "name": "input",
- "jsonName": null,
- "type": "Acme.BookStore.Customers.CustomerDto",
- "typeSimple": "Acme.BookStore.Customers.CustomerDto",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "Body",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- },
- "allowAnonymous": false,
- "implementFrom": "Acme.BookStore.Customers.ICustomerAppService"
- },
- "DeleteAsyncById": {
- "uniqueName": "DeleteAsyncById",
- "name": "DeleteAsync",
- "httpMethod": "DELETE",
- "url": "api/app/customer/{id}",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Int32, System.Private.CoreLib",
- "type": "System.Int32",
- "typeSimple": "number",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "id",
- "name": "id",
- "jsonName": null,
- "type": "System.Int32",
- "typeSimple": "number",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": [],
- "bindingSourceId": "Path",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- },
- "allowAnonymous": false,
- "implementFrom": "Acme.BookStore.Customers.ICustomerAppService"
- }
- }
- }
- }
- },
- "featureManagement": {
- "rootPath": "featureManagement",
- "remoteServiceName": "AbpFeatureManagement",
- "controllers": {
- "Volo.Abp.FeatureManagement.FeaturesController": {
- "controllerName": "Features",
- "controllerGroupName": "Features",
- "isRemoteService": true,
- "isIntegrationService": false,
- "apiVersion": null,
- "type": "Volo.Abp.FeatureManagement.FeaturesController",
- "interfaces": [
- {
- "type": "Volo.Abp.FeatureManagement.IFeatureAppService",
- "name": "IFeatureAppService",
- "methods": [
- {
- "name": "GetAsync",
- "parametersOnMethod": [
- {
- "name": "providerName",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "providerKey",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.FeatureManagement.GetFeatureListResultDto",
- "typeSimple": "Volo.Abp.FeatureManagement.GetFeatureListResultDto"
- }
- },
- {
- "name": "UpdateAsync",
- "parametersOnMethod": [
- {
- "name": "providerName",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "providerKey",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "input",
- "typeAsString": "Volo.Abp.FeatureManagement.UpdateFeaturesDto, Volo.Abp.FeatureManagement.Application.Contracts",
- "type": "Volo.Abp.FeatureManagement.UpdateFeaturesDto",
- "typeSimple": "Volo.Abp.FeatureManagement.UpdateFeaturesDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- }
- },
- {
- "name": "DeleteAsync",
- "parametersOnMethod": [
- {
- "name": "providerName",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "providerKey",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- }
- }
- ]
- }
- ],
- "actions": {
- "GetAsyncByProviderNameAndProviderKey": {
- "uniqueName": "GetAsyncByProviderNameAndProviderKey",
- "name": "GetAsync",
- "httpMethod": "GET",
- "url": "api/feature-management/features",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "providerName",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "providerKey",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "providerName",
- "name": "providerName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "ModelBinding",
- "descriptorName": ""
- },
- {
- "nameOnMethod": "providerKey",
- "name": "providerKey",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "ModelBinding",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.FeatureManagement.GetFeatureListResultDto",
- "typeSimple": "Volo.Abp.FeatureManagement.GetFeatureListResultDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.FeatureManagement.IFeatureAppService"
- },
- "UpdateAsyncByProviderNameAndProviderKeyAndInput": {
- "uniqueName": "UpdateAsyncByProviderNameAndProviderKeyAndInput",
- "name": "UpdateAsync",
- "httpMethod": "PUT",
- "url": "api/feature-management/features",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "providerName",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "providerKey",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "input",
- "typeAsString": "Volo.Abp.FeatureManagement.UpdateFeaturesDto, Volo.Abp.FeatureManagement.Application.Contracts",
- "type": "Volo.Abp.FeatureManagement.UpdateFeaturesDto",
- "typeSimple": "Volo.Abp.FeatureManagement.UpdateFeaturesDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "providerName",
- "name": "providerName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "ModelBinding",
- "descriptorName": ""
- },
- {
- "nameOnMethod": "providerKey",
- "name": "providerKey",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "ModelBinding",
- "descriptorName": ""
- },
- {
- "nameOnMethod": "input",
- "name": "input",
- "jsonName": null,
- "type": "Volo.Abp.FeatureManagement.UpdateFeaturesDto",
- "typeSimple": "Volo.Abp.FeatureManagement.UpdateFeaturesDto",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "Body",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.FeatureManagement.IFeatureAppService"
- },
- "DeleteAsyncByProviderNameAndProviderKey": {
- "uniqueName": "DeleteAsyncByProviderNameAndProviderKey",
- "name": "DeleteAsync",
- "httpMethod": "DELETE",
- "url": "api/feature-management/features",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "providerName",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "providerKey",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "providerName",
- "name": "providerName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "ModelBinding",
- "descriptorName": ""
- },
- {
- "nameOnMethod": "providerKey",
- "name": "providerKey",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "ModelBinding",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.FeatureManagement.IFeatureAppService"
- }
- }
- }
- }
- },
- "identity": {
- "rootPath": "identity",
- "remoteServiceName": "AbpIdentity",
- "controllers": {
- "Volo.Abp.Identity.IdentityRoleController": {
- "controllerName": "IdentityRole",
- "controllerGroupName": "Role",
- "isRemoteService": true,
- "isIntegrationService": false,
- "apiVersion": null,
- "type": "Volo.Abp.Identity.IdentityRoleController",
- "interfaces": [
- {
- "type": "Volo.Abp.Identity.IIdentityRoleAppService",
- "name": "IIdentityRoleAppService",
- "methods": [
- {
- "name": "GetAllListAsync",
- "parametersOnMethod": [],
- "returnValue": {
- "type": "Volo.Abp.Application.Dtos.ListResultDto",
- "typeSimple": "Volo.Abp.Application.Dtos.ListResultDto"
- }
- },
- {
- "name": "GetAsync",
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Identity.IdentityRoleDto",
- "typeSimple": "Volo.Abp.Identity.IdentityRoleDto"
- }
- },
- {
- "name": "GetListAsync",
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Identity.GetIdentityRolesInput, Volo.Abp.Identity.Application.Contracts",
- "type": "Volo.Abp.Identity.GetIdentityRolesInput",
- "typeSimple": "Volo.Abp.Identity.GetIdentityRolesInput",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Application.Dtos.PagedResultDto",
- "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto"
- }
- },
- {
- "name": "CreateAsync",
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Identity.IdentityRoleCreateDto, Volo.Abp.Identity.Application.Contracts",
- "type": "Volo.Abp.Identity.IdentityRoleCreateDto",
- "typeSimple": "Volo.Abp.Identity.IdentityRoleCreateDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Identity.IdentityRoleDto",
- "typeSimple": "Volo.Abp.Identity.IdentityRoleDto"
- }
- },
- {
- "name": "UpdateAsync",
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Identity.IdentityRoleUpdateDto, Volo.Abp.Identity.Application.Contracts",
- "type": "Volo.Abp.Identity.IdentityRoleUpdateDto",
- "typeSimple": "Volo.Abp.Identity.IdentityRoleUpdateDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Identity.IdentityRoleDto",
- "typeSimple": "Volo.Abp.Identity.IdentityRoleDto"
- }
- },
- {
- "name": "DeleteAsync",
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- }
- }
- ]
- }
- ],
- "actions": {
- "GetAllListAsync": {
- "uniqueName": "GetAllListAsync",
- "name": "GetAllListAsync",
- "httpMethod": "GET",
- "url": "api/identity/roles/all",
- "supportedVersions": [],
- "parametersOnMethod": [],
- "parameters": [],
- "returnValue": {
- "type": "Volo.Abp.Application.Dtos.ListResultDto",
- "typeSimple": "Volo.Abp.Application.Dtos.ListResultDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Identity.IIdentityRoleAppService"
- },
- "GetListAsyncByInput": {
- "uniqueName": "GetListAsyncByInput",
- "name": "GetListAsync",
- "httpMethod": "GET",
- "url": "api/identity/roles",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Identity.GetIdentityRolesInput, Volo.Abp.Identity.Application.Contracts",
- "type": "Volo.Abp.Identity.GetIdentityRolesInput",
- "typeSimple": "Volo.Abp.Identity.GetIdentityRolesInput",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "input",
- "name": "Filter",
- "jsonName": null,
- "type": "System.String",
- "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",
- "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Application.Services.IReadOnlyAppService"
- },
- "GetAsyncById": {
- "uniqueName": "GetAsyncById",
- "name": "GetAsync",
- "httpMethod": "GET",
- "url": "api/identity/roles/{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.Identity.IdentityRoleDto",
- "typeSimple": "Volo.Abp.Identity.IdentityRoleDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Application.Services.IReadOnlyAppService"
- },
- "CreateAsyncByInput": {
- "uniqueName": "CreateAsyncByInput",
- "name": "CreateAsync",
- "httpMethod": "POST",
- "url": "api/identity/roles",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Identity.IdentityRoleCreateDto, Volo.Abp.Identity.Application.Contracts",
- "type": "Volo.Abp.Identity.IdentityRoleCreateDto",
- "typeSimple": "Volo.Abp.Identity.IdentityRoleCreateDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "input",
- "name": "input",
- "jsonName": null,
- "type": "Volo.Abp.Identity.IdentityRoleCreateDto",
- "typeSimple": "Volo.Abp.Identity.IdentityRoleCreateDto",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "Body",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Identity.IdentityRoleDto",
- "typeSimple": "Volo.Abp.Identity.IdentityRoleDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Application.Services.ICreateAppService"
- },
- "UpdateAsyncByIdAndInput": {
- "uniqueName": "UpdateAsyncByIdAndInput",
- "name": "UpdateAsync",
- "httpMethod": "PUT",
- "url": "api/identity/roles/{id}",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Identity.IdentityRoleUpdateDto, Volo.Abp.Identity.Application.Contracts",
- "type": "Volo.Abp.Identity.IdentityRoleUpdateDto",
- "typeSimple": "Volo.Abp.Identity.IdentityRoleUpdateDto",
- "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.Abp.Identity.IdentityRoleUpdateDto",
- "typeSimple": "Volo.Abp.Identity.IdentityRoleUpdateDto",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "Body",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Identity.IdentityRoleDto",
- "typeSimple": "Volo.Abp.Identity.IdentityRoleDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Application.Services.IUpdateAppService"
- },
- "DeleteAsyncById": {
- "uniqueName": "DeleteAsyncById",
- "name": "DeleteAsync",
- "httpMethod": "DELETE",
- "url": "api/identity/roles/{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": "System.Void",
- "typeSimple": "System.Void"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Application.Services.IDeleteAppService"
- }
- }
- },
- "Volo.Abp.Identity.IdentityUserController": {
- "controllerName": "IdentityUser",
- "controllerGroupName": "User",
- "isRemoteService": true,
- "isIntegrationService": false,
- "apiVersion": null,
- "type": "Volo.Abp.Identity.IdentityUserController",
- "interfaces": [
- {
- "type": "Volo.Abp.Identity.IIdentityUserAppService",
- "name": "IIdentityUserAppService",
- "methods": [
- {
- "name": "GetRolesAsync",
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Application.Dtos.ListResultDto",
- "typeSimple": "Volo.Abp.Application.Dtos.ListResultDto"
- }
- },
- {
- "name": "GetAssignableRolesAsync",
- "parametersOnMethod": [],
- "returnValue": {
- "type": "Volo.Abp.Application.Dtos.ListResultDto",
- "typeSimple": "Volo.Abp.Application.Dtos.ListResultDto"
- }
- },
- {
- "name": "UpdateRolesAsync",
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Identity.IdentityUserUpdateRolesDto, Volo.Abp.Identity.Application.Contracts",
- "type": "Volo.Abp.Identity.IdentityUserUpdateRolesDto",
- "typeSimple": "Volo.Abp.Identity.IdentityUserUpdateRolesDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- }
- },
- {
- "name": "FindByUsernameAsync",
- "parametersOnMethod": [
- {
- "name": "userName",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Identity.IdentityUserDto",
- "typeSimple": "Volo.Abp.Identity.IdentityUserDto"
- }
- },
- {
- "name": "FindByEmailAsync",
- "parametersOnMethod": [
- {
- "name": "email",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Identity.IdentityUserDto",
- "typeSimple": "Volo.Abp.Identity.IdentityUserDto"
- }
- },
- {
- "name": "GetAsync",
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Identity.IdentityUserDto",
- "typeSimple": "Volo.Abp.Identity.IdentityUserDto"
- }
- },
- {
- "name": "GetListAsync",
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Identity.GetIdentityUsersInput, Volo.Abp.Identity.Application.Contracts",
- "type": "Volo.Abp.Identity.GetIdentityUsersInput",
- "typeSimple": "Volo.Abp.Identity.GetIdentityUsersInput",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Application.Dtos.PagedResultDto",
- "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto"
- }
- },
- {
- "name": "CreateAsync",
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Identity.IdentityUserCreateDto, Volo.Abp.Identity.Application.Contracts",
- "type": "Volo.Abp.Identity.IdentityUserCreateDto",
- "typeSimple": "Volo.Abp.Identity.IdentityUserCreateDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Identity.IdentityUserDto",
- "typeSimple": "Volo.Abp.Identity.IdentityUserDto"
- }
- },
- {
- "name": "UpdateAsync",
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Identity.IdentityUserUpdateDto, Volo.Abp.Identity.Application.Contracts",
- "type": "Volo.Abp.Identity.IdentityUserUpdateDto",
- "typeSimple": "Volo.Abp.Identity.IdentityUserUpdateDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Identity.IdentityUserDto",
- "typeSimple": "Volo.Abp.Identity.IdentityUserDto"
- }
- },
- {
- "name": "DeleteAsync",
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- }
- }
- ]
- }
- ],
- "actions": {
- "GetAsyncById": {
- "uniqueName": "GetAsyncById",
- "name": "GetAsync",
- "httpMethod": "GET",
- "url": "api/identity/users/{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.Identity.IdentityUserDto",
- "typeSimple": "Volo.Abp.Identity.IdentityUserDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Application.Services.IReadOnlyAppService"
- },
- "GetListAsyncByInput": {
- "uniqueName": "GetListAsyncByInput",
- "name": "GetListAsync",
- "httpMethod": "GET",
- "url": "api/identity/users",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Identity.GetIdentityUsersInput, Volo.Abp.Identity.Application.Contracts",
- "type": "Volo.Abp.Identity.GetIdentityUsersInput",
- "typeSimple": "Volo.Abp.Identity.GetIdentityUsersInput",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "input",
- "name": "Filter",
- "jsonName": null,
- "type": "System.String",
- "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",
- "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Application.Services.IReadOnlyAppService"
- },
- "CreateAsyncByInput": {
- "uniqueName": "CreateAsyncByInput",
- "name": "CreateAsync",
- "httpMethod": "POST",
- "url": "api/identity/users",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Identity.IdentityUserCreateDto, Volo.Abp.Identity.Application.Contracts",
- "type": "Volo.Abp.Identity.IdentityUserCreateDto",
- "typeSimple": "Volo.Abp.Identity.IdentityUserCreateDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "input",
- "name": "input",
- "jsonName": null,
- "type": "Volo.Abp.Identity.IdentityUserCreateDto",
- "typeSimple": "Volo.Abp.Identity.IdentityUserCreateDto",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "Body",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Identity.IdentityUserDto",
- "typeSimple": "Volo.Abp.Identity.IdentityUserDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Application.Services.ICreateAppService"
- },
- "UpdateAsyncByIdAndInput": {
- "uniqueName": "UpdateAsyncByIdAndInput",
- "name": "UpdateAsync",
- "httpMethod": "PUT",
- "url": "api/identity/users/{id}",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Identity.IdentityUserUpdateDto, Volo.Abp.Identity.Application.Contracts",
- "type": "Volo.Abp.Identity.IdentityUserUpdateDto",
- "typeSimple": "Volo.Abp.Identity.IdentityUserUpdateDto",
- "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.Abp.Identity.IdentityUserUpdateDto",
- "typeSimple": "Volo.Abp.Identity.IdentityUserUpdateDto",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "Body",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Identity.IdentityUserDto",
- "typeSimple": "Volo.Abp.Identity.IdentityUserDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Application.Services.IUpdateAppService"
- },
- "DeleteAsyncById": {
- "uniqueName": "DeleteAsyncById",
- "name": "DeleteAsync",
- "httpMethod": "DELETE",
- "url": "api/identity/users/{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": "System.Void",
- "typeSimple": "System.Void"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Application.Services.IDeleteAppService"
- },
- "GetRolesAsyncById": {
- "uniqueName": "GetRolesAsyncById",
- "name": "GetRolesAsync",
- "httpMethod": "GET",
- "url": "api/identity/users/{id}/roles",
- "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.Application.Dtos.ListResultDto",
- "typeSimple": "Volo.Abp.Application.Dtos.ListResultDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Identity.IIdentityUserAppService"
- },
- "GetAssignableRolesAsync": {
- "uniqueName": "GetAssignableRolesAsync",
- "name": "GetAssignableRolesAsync",
- "httpMethod": "GET",
- "url": "api/identity/users/assignable-roles",
- "supportedVersions": [],
- "parametersOnMethod": [],
- "parameters": [],
- "returnValue": {
- "type": "Volo.Abp.Application.Dtos.ListResultDto",
- "typeSimple": "Volo.Abp.Application.Dtos.ListResultDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Identity.IIdentityUserAppService"
- },
- "UpdateRolesAsyncByIdAndInput": {
- "uniqueName": "UpdateRolesAsyncByIdAndInput",
- "name": "UpdateRolesAsync",
- "httpMethod": "PUT",
- "url": "api/identity/users/{id}/roles",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Identity.IdentityUserUpdateRolesDto, Volo.Abp.Identity.Application.Contracts",
- "type": "Volo.Abp.Identity.IdentityUserUpdateRolesDto",
- "typeSimple": "Volo.Abp.Identity.IdentityUserUpdateRolesDto",
- "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.Abp.Identity.IdentityUserUpdateRolesDto",
- "typeSimple": "Volo.Abp.Identity.IdentityUserUpdateRolesDto",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "Body",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Identity.IIdentityUserAppService"
- },
- "FindByUsernameAsyncByUserName": {
- "uniqueName": "FindByUsernameAsyncByUserName",
- "name": "FindByUsernameAsync",
- "httpMethod": "GET",
- "url": "api/identity/users/by-username/{userName}",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "userName",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "userName",
- "name": "userName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": [],
- "bindingSourceId": "Path",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Identity.IdentityUserDto",
- "typeSimple": "Volo.Abp.Identity.IdentityUserDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Identity.IIdentityUserAppService"
- },
- "FindByEmailAsyncByEmail": {
- "uniqueName": "FindByEmailAsyncByEmail",
- "name": "FindByEmailAsync",
- "httpMethod": "GET",
- "url": "api/identity/users/by-email/{email}",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "email",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "email",
- "name": "email",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": [],
- "bindingSourceId": "Path",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Identity.IdentityUserDto",
- "typeSimple": "Volo.Abp.Identity.IdentityUserDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Identity.IIdentityUserAppService"
- }
- }
- },
- "Volo.Abp.Identity.IdentityUserLookupController": {
- "controllerName": "IdentityUserLookup",
- "controllerGroupName": "UserLookup",
- "isRemoteService": true,
- "isIntegrationService": false,
- "apiVersion": null,
- "type": "Volo.Abp.Identity.IdentityUserLookupController",
- "interfaces": [
- {
- "type": "Volo.Abp.Identity.IIdentityUserLookupAppService",
- "name": "IIdentityUserLookupAppService",
- "methods": [
- {
- "name": "FindByIdAsync",
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Users.UserData",
- "typeSimple": "Volo.Abp.Users.UserData"
- }
- },
- {
- "name": "FindByUserNameAsync",
- "parametersOnMethod": [
- {
- "name": "userName",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Users.UserData",
- "typeSimple": "Volo.Abp.Users.UserData"
- }
- },
- {
- "name": "SearchAsync",
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Identity.UserLookupSearchInputDto, Volo.Abp.Identity.Application.Contracts",
- "type": "Volo.Abp.Identity.UserLookupSearchInputDto",
- "typeSimple": "Volo.Abp.Identity.UserLookupSearchInputDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Application.Dtos.ListResultDto",
- "typeSimple": "Volo.Abp.Application.Dtos.ListResultDto"
- }
- },
- {
- "name": "GetCountAsync",
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Identity.UserLookupCountInputDto, Volo.Abp.Identity.Application.Contracts",
- "type": "Volo.Abp.Identity.UserLookupCountInputDto",
- "typeSimple": "Volo.Abp.Identity.UserLookupCountInputDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "System.Int64",
- "typeSimple": "number"
- }
- }
- ]
- }
- ],
- "actions": {
- "FindByIdAsyncById": {
- "uniqueName": "FindByIdAsyncById",
- "name": "FindByIdAsync",
- "httpMethod": "GET",
- "url": "api/identity/users/lookup/{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.Users.UserData",
- "typeSimple": "Volo.Abp.Users.UserData"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Identity.IIdentityUserLookupAppService"
- },
- "FindByUserNameAsyncByUserName": {
- "uniqueName": "FindByUserNameAsyncByUserName",
- "name": "FindByUserNameAsync",
- "httpMethod": "GET",
- "url": "api/identity/users/lookup/by-username/{userName}",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "userName",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "userName",
- "name": "userName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": [],
- "bindingSourceId": "Path",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Users.UserData",
- "typeSimple": "Volo.Abp.Users.UserData"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Identity.IIdentityUserLookupAppService"
- },
- "SearchAsyncByInput": {
- "uniqueName": "SearchAsyncByInput",
- "name": "SearchAsync",
- "httpMethod": "GET",
- "url": "api/identity/users/lookup/search",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Identity.UserLookupSearchInputDto, Volo.Abp.Identity.Application.Contracts",
- "type": "Volo.Abp.Identity.UserLookupSearchInputDto",
- "typeSimple": "Volo.Abp.Identity.UserLookupSearchInputDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "input",
- "name": "Filter",
- "jsonName": null,
- "type": "System.String",
- "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.ListResultDto",
- "typeSimple": "Volo.Abp.Application.Dtos.ListResultDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Identity.IIdentityUserLookupAppService"
- },
- "GetCountAsyncByInput": {
- "uniqueName": "GetCountAsyncByInput",
- "name": "GetCountAsync",
- "httpMethod": "GET",
- "url": "api/identity/users/lookup/count",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.Identity.UserLookupCountInputDto, Volo.Abp.Identity.Application.Contracts",
- "type": "Volo.Abp.Identity.UserLookupCountInputDto",
- "typeSimple": "Volo.Abp.Identity.UserLookupCountInputDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "input",
- "name": "Filter",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "ModelBinding",
- "descriptorName": "input"
- }
- ],
- "returnValue": {
- "type": "System.Int64",
- "typeSimple": "number"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Identity.IIdentityUserLookupAppService"
- }
- }
- }
- }
- },
- "multi-tenancy": {
- "rootPath": "multi-tenancy",
- "remoteServiceName": "AbpTenantManagement",
- "controllers": {
- "Volo.Abp.TenantManagement.TenantController": {
- "controllerName": "Tenant",
- "controllerGroupName": "Tenant",
- "isRemoteService": true,
- "isIntegrationService": false,
- "apiVersion": null,
- "type": "Volo.Abp.TenantManagement.TenantController",
- "interfaces": [
- {
- "type": "Volo.Abp.TenantManagement.ITenantAppService",
- "name": "ITenantAppService",
- "methods": [
- {
- "name": "GetDefaultConnectionStringAsync",
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "System.String",
- "typeSimple": "string"
- }
- },
- {
- "name": "UpdateDefaultConnectionStringAsync",
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "defaultConnectionString",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- }
- },
- {
- "name": "DeleteDefaultConnectionStringAsync",
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- }
- },
- {
- "name": "GetAsync",
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.TenantManagement.TenantDto",
- "typeSimple": "Volo.Abp.TenantManagement.TenantDto"
- }
- },
- {
- "name": "GetListAsync",
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.TenantManagement.GetTenantsInput, Volo.Abp.TenantManagement.Application.Contracts",
- "type": "Volo.Abp.TenantManagement.GetTenantsInput",
- "typeSimple": "Volo.Abp.TenantManagement.GetTenantsInput",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.Application.Dtos.PagedResultDto",
- "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto"
- }
- },
- {
- "name": "CreateAsync",
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.TenantManagement.TenantCreateDto, Volo.Abp.TenantManagement.Application.Contracts",
- "type": "Volo.Abp.TenantManagement.TenantCreateDto",
- "typeSimple": "Volo.Abp.TenantManagement.TenantCreateDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.TenantManagement.TenantDto",
- "typeSimple": "Volo.Abp.TenantManagement.TenantDto"
- }
- },
- {
- "name": "UpdateAsync",
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "input",
- "typeAsString": "Volo.Abp.TenantManagement.TenantUpdateDto, Volo.Abp.TenantManagement.Application.Contracts",
- "type": "Volo.Abp.TenantManagement.TenantUpdateDto",
- "typeSimple": "Volo.Abp.TenantManagement.TenantUpdateDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.TenantManagement.TenantDto",
- "typeSimple": "Volo.Abp.TenantManagement.TenantDto"
- }
- },
- {
- "name": "DeleteAsync",
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- }
- }
- ]
- }
- ],
- "actions": {
- "GetAsyncById": {
- "uniqueName": "GetAsyncById",
- "name": "GetAsync",
- "httpMethod": "GET",
- "url": "api/multi-tenancy/tenants/{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.TenantManagement.TenantDto",
- "typeSimple": "Volo.Abp.TenantManagement.TenantDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Application.Services.IReadOnlyAppService"
- },
- "GetListAsyncByInput": {
- "uniqueName": "GetListAsyncByInput",
- "name": "GetListAsync",
- "httpMethod": "GET",
- "url": "api/multi-tenancy/tenants",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.TenantManagement.GetTenantsInput, Volo.Abp.TenantManagement.Application.Contracts",
- "type": "Volo.Abp.TenantManagement.GetTenantsInput",
- "typeSimple": "Volo.Abp.TenantManagement.GetTenantsInput",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "input",
- "name": "Filter",
- "jsonName": null,
- "type": "System.String",
- "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",
- "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Application.Services.IReadOnlyAppService"
- },
- "CreateAsyncByInput": {
- "uniqueName": "CreateAsyncByInput",
- "name": "CreateAsync",
- "httpMethod": "POST",
- "url": "api/multi-tenancy/tenants",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.TenantManagement.TenantCreateDto, Volo.Abp.TenantManagement.Application.Contracts",
- "type": "Volo.Abp.TenantManagement.TenantCreateDto",
- "typeSimple": "Volo.Abp.TenantManagement.TenantCreateDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "input",
- "name": "input",
- "jsonName": null,
- "type": "Volo.Abp.TenantManagement.TenantCreateDto",
- "typeSimple": "Volo.Abp.TenantManagement.TenantCreateDto",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "Body",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.TenantManagement.TenantDto",
- "typeSimple": "Volo.Abp.TenantManagement.TenantDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Application.Services.ICreateAppService"
- },
- "UpdateAsyncByIdAndInput": {
- "uniqueName": "UpdateAsyncByIdAndInput",
- "name": "UpdateAsync",
- "httpMethod": "PUT",
- "url": "api/multi-tenancy/tenants/{id}",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "input",
- "typeAsString": "Volo.Abp.TenantManagement.TenantUpdateDto, Volo.Abp.TenantManagement.Application.Contracts",
- "type": "Volo.Abp.TenantManagement.TenantUpdateDto",
- "typeSimple": "Volo.Abp.TenantManagement.TenantUpdateDto",
- "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.Abp.TenantManagement.TenantUpdateDto",
- "typeSimple": "Volo.Abp.TenantManagement.TenantUpdateDto",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "Body",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.TenantManagement.TenantDto",
- "typeSimple": "Volo.Abp.TenantManagement.TenantDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Application.Services.IUpdateAppService"
- },
- "DeleteAsyncById": {
- "uniqueName": "DeleteAsyncById",
- "name": "DeleteAsync",
- "httpMethod": "DELETE",
- "url": "api/multi-tenancy/tenants/{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": "System.Void",
- "typeSimple": "System.Void"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.Application.Services.IDeleteAppService"
- },
- "GetDefaultConnectionStringAsyncById": {
- "uniqueName": "GetDefaultConnectionStringAsyncById",
- "name": "GetDefaultConnectionStringAsync",
- "httpMethod": "GET",
- "url": "api/multi-tenancy/tenants/{id}/default-connection-string",
- "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": "System.String",
- "typeSimple": "string"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.TenantManagement.ITenantAppService"
- },
- "UpdateDefaultConnectionStringAsyncByIdAndDefaultConnectionString": {
- "uniqueName": "UpdateDefaultConnectionStringAsyncByIdAndDefaultConnectionString",
- "name": "UpdateDefaultConnectionStringAsync",
- "httpMethod": "PUT",
- "url": "api/multi-tenancy/tenants/{id}/default-connection-string",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "id",
- "typeAsString": "System.Guid, System.Private.CoreLib",
- "type": "System.Guid",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "defaultConnectionString",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "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": ""
- },
- {
- "nameOnMethod": "defaultConnectionString",
- "name": "defaultConnectionString",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "ModelBinding",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.TenantManagement.ITenantAppService"
- },
- "DeleteDefaultConnectionStringAsyncById": {
- "uniqueName": "DeleteDefaultConnectionStringAsyncById",
- "name": "DeleteDefaultConnectionStringAsync",
- "httpMethod": "DELETE",
- "url": "api/multi-tenancy/tenants/{id}/default-connection-string",
- "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": "System.Void",
- "typeSimple": "System.Void"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.TenantManagement.ITenantAppService"
- }
- }
- }
- }
- },
- "permissionManagement": {
- "rootPath": "permissionManagement",
- "remoteServiceName": "AbpPermissionManagement",
- "controllers": {
- "Volo.Abp.PermissionManagement.PermissionsController": {
- "controllerName": "Permissions",
- "controllerGroupName": "Permissions",
- "isRemoteService": true,
- "isIntegrationService": false,
- "apiVersion": null,
- "type": "Volo.Abp.PermissionManagement.PermissionsController",
- "interfaces": [
- {
- "type": "Volo.Abp.PermissionManagement.IPermissionAppService",
- "name": "IPermissionAppService",
- "methods": [
- {
- "name": "GetAsync",
- "parametersOnMethod": [
- {
- "name": "providerName",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "providerKey",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.PermissionManagement.GetPermissionListResultDto",
- "typeSimple": "Volo.Abp.PermissionManagement.GetPermissionListResultDto"
- }
- },
- {
- "name": "UpdateAsync",
- "parametersOnMethod": [
- {
- "name": "providerName",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "providerKey",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "input",
- "typeAsString": "Volo.Abp.PermissionManagement.UpdatePermissionsDto, Volo.Abp.PermissionManagement.Application.Contracts",
- "type": "Volo.Abp.PermissionManagement.UpdatePermissionsDto",
- "typeSimple": "Volo.Abp.PermissionManagement.UpdatePermissionsDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- }
- }
- ]
- }
- ],
- "actions": {
- "GetAsyncByProviderNameAndProviderKey": {
- "uniqueName": "GetAsyncByProviderNameAndProviderKey",
- "name": "GetAsync",
- "httpMethod": "GET",
- "url": "api/permission-management/permissions",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "providerName",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "providerKey",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "providerName",
- "name": "providerName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "ModelBinding",
- "descriptorName": ""
- },
- {
- "nameOnMethod": "providerKey",
- "name": "providerKey",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "ModelBinding",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "Volo.Abp.PermissionManagement.GetPermissionListResultDto",
- "typeSimple": "Volo.Abp.PermissionManagement.GetPermissionListResultDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.PermissionManagement.IPermissionAppService"
- },
- "UpdateAsyncByProviderNameAndProviderKeyAndInput": {
- "uniqueName": "UpdateAsyncByProviderNameAndProviderKeyAndInput",
- "name": "UpdateAsync",
- "httpMethod": "PUT",
- "url": "api/permission-management/permissions",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "providerName",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "providerKey",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- },
- {
- "name": "input",
- "typeAsString": "Volo.Abp.PermissionManagement.UpdatePermissionsDto, Volo.Abp.PermissionManagement.Application.Contracts",
- "type": "Volo.Abp.PermissionManagement.UpdatePermissionsDto",
- "typeSimple": "Volo.Abp.PermissionManagement.UpdatePermissionsDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "providerName",
- "name": "providerName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "ModelBinding",
- "descriptorName": ""
- },
- {
- "nameOnMethod": "providerKey",
- "name": "providerKey",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "ModelBinding",
- "descriptorName": ""
- },
- {
- "nameOnMethod": "input",
- "name": "input",
- "jsonName": null,
- "type": "Volo.Abp.PermissionManagement.UpdatePermissionsDto",
- "typeSimple": "Volo.Abp.PermissionManagement.UpdatePermissionsDto",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "Body",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.PermissionManagement.IPermissionAppService"
- }
- }
- }
- }
- },
- "settingManagement": {
- "rootPath": "settingManagement",
- "remoteServiceName": "SettingManagement",
- "controllers": {
- "Volo.Abp.SettingManagement.EmailSettingsController": {
- "controllerName": "EmailSettings",
- "controllerGroupName": "EmailSettings",
- "isRemoteService": true,
- "isIntegrationService": false,
- "apiVersion": null,
- "type": "Volo.Abp.SettingManagement.EmailSettingsController",
- "interfaces": [
- {
- "type": "Volo.Abp.SettingManagement.IEmailSettingsAppService",
- "name": "IEmailSettingsAppService",
- "methods": [
- {
- "name": "GetAsync",
- "parametersOnMethod": [],
- "returnValue": {
- "type": "Volo.Abp.SettingManagement.EmailSettingsDto",
- "typeSimple": "Volo.Abp.SettingManagement.EmailSettingsDto"
- }
- },
- {
- "name": "UpdateAsync",
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.SettingManagement.UpdateEmailSettingsDto, Volo.Abp.SettingManagement.Application.Contracts",
- "type": "Volo.Abp.SettingManagement.UpdateEmailSettingsDto",
- "typeSimple": "Volo.Abp.SettingManagement.UpdateEmailSettingsDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- }
- },
- {
- "name": "SendTestEmailAsync",
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.SettingManagement.SendTestEmailInput, Volo.Abp.SettingManagement.Application.Contracts",
- "type": "Volo.Abp.SettingManagement.SendTestEmailInput",
- "typeSimple": "Volo.Abp.SettingManagement.SendTestEmailInput",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- }
- }
- ]
- }
- ],
- "actions": {
- "GetAsync": {
- "uniqueName": "GetAsync",
- "name": "GetAsync",
- "httpMethod": "GET",
- "url": "api/setting-management/emailing",
- "supportedVersions": [],
- "parametersOnMethod": [],
- "parameters": [],
- "returnValue": {
- "type": "Volo.Abp.SettingManagement.EmailSettingsDto",
- "typeSimple": "Volo.Abp.SettingManagement.EmailSettingsDto"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.SettingManagement.IEmailSettingsAppService"
- },
- "UpdateAsyncByInput": {
- "uniqueName": "UpdateAsyncByInput",
- "name": "UpdateAsync",
- "httpMethod": "POST",
- "url": "api/setting-management/emailing",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.SettingManagement.UpdateEmailSettingsDto, Volo.Abp.SettingManagement.Application.Contracts",
- "type": "Volo.Abp.SettingManagement.UpdateEmailSettingsDto",
- "typeSimple": "Volo.Abp.SettingManagement.UpdateEmailSettingsDto",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "input",
- "name": "input",
- "jsonName": null,
- "type": "Volo.Abp.SettingManagement.UpdateEmailSettingsDto",
- "typeSimple": "Volo.Abp.SettingManagement.UpdateEmailSettingsDto",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "Body",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.SettingManagement.IEmailSettingsAppService"
- },
- "SendTestEmailAsyncByInput": {
- "uniqueName": "SendTestEmailAsyncByInput",
- "name": "SendTestEmailAsync",
- "httpMethod": "POST",
- "url": "api/setting-management/emailing/send-test-email",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "input",
- "typeAsString": "Volo.Abp.SettingManagement.SendTestEmailInput, Volo.Abp.SettingManagement.Application.Contracts",
- "type": "Volo.Abp.SettingManagement.SendTestEmailInput",
- "typeSimple": "Volo.Abp.SettingManagement.SendTestEmailInput",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "input",
- "name": "input",
- "jsonName": null,
- "type": "Volo.Abp.SettingManagement.SendTestEmailInput",
- "typeSimple": "Volo.Abp.SettingManagement.SendTestEmailInput",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "Body",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.SettingManagement.IEmailSettingsAppService"
- }
- }
- },
- "Volo.Abp.SettingManagement.TimeZoneSettingsController": {
- "controllerName": "TimeZoneSettings",
- "controllerGroupName": "TimeZoneSettings",
- "isRemoteService": true,
- "isIntegrationService": false,
- "apiVersion": null,
- "type": "Volo.Abp.SettingManagement.TimeZoneSettingsController",
- "interfaces": [
- {
- "type": "Volo.Abp.SettingManagement.ITimeZoneSettingsAppService",
- "name": "ITimeZoneSettingsAppService",
- "methods": [
- {
- "name": "GetAsync",
- "parametersOnMethod": [],
- "returnValue": {
- "type": "System.String",
- "typeSimple": "string"
- }
- },
- {
- "name": "GetTimezonesAsync",
- "parametersOnMethod": [],
- "returnValue": {
- "type": "System.Collections.Generic.List",
- "typeSimple": "[Volo.Abp.NameValue]"
- }
- },
- {
- "name": "UpdateAsync",
- "parametersOnMethod": [
- {
- "name": "timezone",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- }
- }
- ]
- }
- ],
- "actions": {
- "GetAsync": {
- "uniqueName": "GetAsync",
- "name": "GetAsync",
- "httpMethod": "GET",
- "url": "api/setting-management/timezone",
- "supportedVersions": [],
- "parametersOnMethod": [],
- "parameters": [],
- "returnValue": {
- "type": "System.String",
- "typeSimple": "string"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.SettingManagement.ITimeZoneSettingsAppService"
- },
- "GetTimezonesAsync": {
- "uniqueName": "GetTimezonesAsync",
- "name": "GetTimezonesAsync",
- "httpMethod": "GET",
- "url": "api/setting-management/timezone/timezones",
- "supportedVersions": [],
- "parametersOnMethod": [],
- "parameters": [],
- "returnValue": {
- "type": "System.Collections.Generic.List",
- "typeSimple": "[Volo.Abp.NameValue]"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.SettingManagement.ITimeZoneSettingsAppService"
- },
- "UpdateAsyncByTimezone": {
- "uniqueName": "UpdateAsyncByTimezone",
- "name": "UpdateAsync",
- "httpMethod": "POST",
- "url": "api/setting-management/timezone",
- "supportedVersions": [],
- "parametersOnMethod": [
- {
- "name": "timezone",
- "typeAsString": "System.String, System.Private.CoreLib",
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null
- }
- ],
- "parameters": [
- {
- "nameOnMethod": "timezone",
- "name": "timezone",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isOptional": false,
- "defaultValue": null,
- "constraintTypes": null,
- "bindingSourceId": "ModelBinding",
- "descriptorName": ""
- }
- ],
- "returnValue": {
- "type": "System.Void",
- "typeSimple": "System.Void"
- },
- "allowAnonymous": null,
- "implementFrom": "Volo.Abp.SettingManagement.ITimeZoneSettingsAppService"
- }
- }
- }
- }
- }
- },
- "types": {
- "Acme.BookStore.Authors.AuthorDto": {
- "baseType": "Volo.Abp.Application.Dtos.EntityDto",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "BirthDate",
- "jsonName": null,
- "type": "System.DateTime",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ShortBio",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Acme.BookStore.Authors.CreateAuthorDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": 0,
- "maxLength": 64,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "BirthDate",
- "jsonName": null,
- "type": "System.DateTime",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ShortBio",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Acme.BookStore.Authors.GetAuthorListDto": {
- "baseType": "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Filter",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Acme.BookStore.Authors.UpdateAuthorDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": 0,
- "maxLength": 64,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "BirthDate",
- "jsonName": null,
- "type": "System.DateTime",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ShortBio",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Acme.BookStore.BookIssued.BookIssueDto": {
- "baseType": "Volo.Abp.Application.Dtos.EntityDto",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "bookId",
- "jsonName": null,
- "type": "System.Guid",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "customerId",
- "jsonName": null,
- "type": "System.Int32",
- "typeSimple": "number",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Acme.BookStore.BookIssued.BookIssueListDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "bookIssueId",
- "jsonName": null,
- "type": "System.Int32",
- "typeSimple": "number",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "bookName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "customerName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "issueDate",
- "jsonName": null,
- "type": "System.DateTime",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Acme.BookStore.Books.BookDto": {
- "baseType": "Volo.Abp.Application.Dtos.AuditedEntityDto",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Type",
- "jsonName": null,
- "type": "Acme.BookStore.Books.BookType",
- "typeSimple": "Acme.BookStore.Books.BookType",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "PublishDate",
- "jsonName": null,
- "type": "System.DateTime",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Price",
- "jsonName": null,
- "type": "System.Single",
- "typeSimple": "number",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Acme.BookStore.Books.BookType": {
- "baseType": "System.Enum",
- "isEnum": true,
- "enumNames": [
- "Undefined",
- "Adventure",
- "Biography",
- "Dystopia",
- "Fantastic",
- "Horror",
- "Science",
- "ScienceFiction",
- "Poetry"
- ],
- "enumValues": [
- 0,
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8
- ],
- "genericArguments": null,
- "properties": null
- },
- "Acme.BookStore.Books.CreateUpdateBookDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": 0,
- "maxLength": 128,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Type",
- "jsonName": null,
- "type": "Acme.BookStore.Books.BookType",
- "typeSimple": "Acme.BookStore.Books.BookType",
- "isRequired": true,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "PublishDate",
- "jsonName": null,
- "type": "System.DateTime",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Price",
- "jsonName": null,
- "type": "System.Single",
- "typeSimple": "number",
- "isRequired": true,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Acme.BookStore.Customers.CustomerDto": {
- "baseType": "Volo.Abp.Application.Dtos.EntityDto",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "firstName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "lastName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "phone",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "address",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Account.ChangePasswordInput": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "CurrentPassword",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": 0,
- "maxLength": 128,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "NewPassword",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": 0,
- "maxLength": 128,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Account.ProfileDto": {
- "baseType": "Volo.Abp.ObjectExtending.ExtensibleObject",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "UserName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Email",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Surname",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "PhoneNumber",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "IsExternal",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "HasPassword",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ConcurrencyStamp",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Account.RegisterDto": {
- "baseType": "Volo.Abp.ObjectExtending.ExtensibleObject",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "UserName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": 0,
- "maxLength": 256,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "EmailAddress",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": 0,
- "maxLength": 256,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Password",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": 0,
- "maxLength": 128,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "AppName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Account.ResetPasswordDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "UserId",
- "jsonName": null,
- "type": "System.Guid",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ResetToken",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Password",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Account.SendPasswordResetCodeDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Email",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": 0,
- "maxLength": 256,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "AppName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ReturnUrl",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ReturnUrlHash",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Account.UpdateProfileDto": {
- "baseType": "Volo.Abp.ObjectExtending.ExtensibleObject",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "UserName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": 0,
- "maxLength": 256,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Email",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": 0,
- "maxLength": 256,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": 0,
- "maxLength": 64,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Surname",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": 0,
- "maxLength": 64,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "PhoneNumber",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": 0,
- "maxLength": 16,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ConcurrencyStamp",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Account.VerifyPasswordResetTokenInput": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "UserId",
- "jsonName": null,
- "type": "System.Guid",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ResetToken",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Account.Web.Areas.Account.Controllers.Models.AbpLoginResult": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Result",
- "jsonName": null,
- "type": "Volo.Abp.Account.Web.Areas.Account.Controllers.Models.LoginResultType",
- "typeSimple": "Volo.Abp.Account.Web.Areas.Account.Controllers.Models.LoginResultType",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Description",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Account.Web.Areas.Account.Controllers.Models.LoginResultType": {
- "baseType": "System.Enum",
- "isEnum": true,
- "enumNames": [
- "Success",
- "InvalidUserNameOrPassword",
- "NotAllowed",
- "LockedOut",
- "RequiresTwoFactor"
- ],
- "enumValues": [
- 1,
- 2,
- 3,
- 4,
- 5
- ],
- "genericArguments": null,
- "properties": null
- },
- "Volo.Abp.Account.Web.Areas.Account.Controllers.Models.UserLoginInfo": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "UserNameOrEmailAddress",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": 0,
- "maxLength": 255,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Password",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": 0,
- "maxLength": 32,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "RememberMe",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Application.Dtos.AuditedEntityDto": {
- "baseType": "Volo.Abp.Application.Dtos.CreationAuditedEntityDto",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": [
- "TPrimaryKey"
- ],
- "properties": [
- {
- "name": "LastModificationTime",
- "jsonName": null,
- "type": "System.DateTime?",
- "typeSimple": "string?",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "LastModifierId",
- "jsonName": null,
- "type": "System.Guid?",
- "typeSimple": "string?",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Application.Dtos.CreationAuditedEntityDto": {
- "baseType": "Volo.Abp.Application.Dtos.EntityDto",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": [
- "TPrimaryKey"
- ],
- "properties": [
- {
- "name": "CreationTime",
- "jsonName": null,
- "type": "System.DateTime",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "CreatorId",
- "jsonName": null,
- "type": "System.Guid?",
- "typeSimple": "string?",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Application.Dtos.EntityDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": []
- },
- "Volo.Abp.Application.Dtos.EntityDto": {
- "baseType": "Volo.Abp.Application.Dtos.EntityDto",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": [
- "TKey"
- ],
- "properties": [
- {
- "name": "Id",
- "jsonName": null,
- "type": "TKey",
- "typeSimple": "TKey",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Application.Dtos.ExtensibleAuditedEntityDto": {
- "baseType": "Volo.Abp.Application.Dtos.ExtensibleCreationAuditedEntityDto",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": [
- "TPrimaryKey"
- ],
- "properties": [
- {
- "name": "LastModificationTime",
- "jsonName": null,
- "type": "System.DateTime?",
- "typeSimple": "string?",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "LastModifierId",
- "jsonName": null,
- "type": "System.Guid?",
- "typeSimple": "string?",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Application.Dtos.ExtensibleCreationAuditedEntityDto": {
- "baseType": "Volo.Abp.Application.Dtos.ExtensibleEntityDto",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": [
- "TPrimaryKey"
- ],
- "properties": [
- {
- "name": "CreationTime",
- "jsonName": null,
- "type": "System.DateTime",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "CreatorId",
- "jsonName": null,
- "type": "System.Guid?",
- "typeSimple": "string?",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Application.Dtos.ExtensibleEntityDto": {
- "baseType": "Volo.Abp.ObjectExtending.ExtensibleObject",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": [
- "TKey"
- ],
- "properties": [
- {
- "name": "Id",
- "jsonName": null,
- "type": "TKey",
- "typeSimple": "TKey",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Application.Dtos.ExtensibleFullAuditedEntityDto": {
- "baseType": "Volo.Abp.Application.Dtos.ExtensibleAuditedEntityDto",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": [
- "TPrimaryKey"
- ],
- "properties": [
- {
- "name": "IsDeleted",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "DeleterId",
- "jsonName": null,
- "type": "System.Guid?",
- "typeSimple": "string?",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "DeletionTime",
- "jsonName": null,
- "type": "System.DateTime?",
- "typeSimple": "string?",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Application.Dtos.LimitedResultRequestDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "DefaultMaxResultCount",
- "jsonName": null,
- "type": "System.Int32",
- "typeSimple": "number",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "MaxMaxResultCount",
- "jsonName": null,
- "type": "System.Int32",
- "typeSimple": "number",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "MaxResultCount",
- "jsonName": null,
- "type": "System.Int32",
- "typeSimple": "number",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": "1",
- "maximum": "2147483647",
- "regex": null
- }
- ]
- },
- "Volo.Abp.Application.Dtos.ListResultDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": [
- "T"
- ],
- "properties": [
- {
- "name": "Items",
- "jsonName": null,
- "type": "[T]",
- "typeSimple": "[T]",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto": {
- "baseType": "Volo.Abp.Application.Dtos.PagedResultRequestDto",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Sorting",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Application.Dtos.PagedResultDto": {
- "baseType": "Volo.Abp.Application.Dtos.ListResultDto",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": [
- "T"
- ],
- "properties": [
- {
- "name": "TotalCount",
- "jsonName": null,
- "type": "System.Int64",
- "typeSimple": "number",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Application.Dtos.PagedResultRequestDto": {
- "baseType": "Volo.Abp.Application.Dtos.LimitedResultRequestDto",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "SkipCount",
- "jsonName": null,
- "type": "System.Int32",
- "typeSimple": "number",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": "0",
- "maximum": "2147483647",
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationAuthConfigurationDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "GrantedPolicies",
- "jsonName": null,
- "type": "{System.String:System.Boolean}",
- "typeSimple": "{string:boolean}",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Localization",
- "jsonName": null,
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationConfigurationDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationConfigurationDto",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Auth",
- "jsonName": null,
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationAuthConfigurationDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationAuthConfigurationDto",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Setting",
- "jsonName": null,
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationSettingConfigurationDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationSettingConfigurationDto",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "CurrentUser",
- "jsonName": null,
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentUserDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentUserDto",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Features",
- "jsonName": null,
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationFeatureConfigurationDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationFeatureConfigurationDto",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "GlobalFeatures",
- "jsonName": null,
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationGlobalFeatureConfigurationDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationGlobalFeatureConfigurationDto",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "MultiTenancy",
- "jsonName": null,
- "type": "Volo.Abp.AspNetCore.Mvc.MultiTenancy.MultiTenancyInfoDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.MultiTenancy.MultiTenancyInfoDto",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "CurrentTenant",
- "jsonName": null,
- "type": "Volo.Abp.AspNetCore.Mvc.MultiTenancy.CurrentTenantDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.MultiTenancy.CurrentTenantDto",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Timing",
- "jsonName": null,
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.TimingDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.TimingDto",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Clock",
- "jsonName": null,
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ClockDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ClockDto",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ObjectExtensions",
- "jsonName": null,
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ObjectExtensionsDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ObjectExtensionsDto",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ExtraProperties",
- "jsonName": null,
- "type": "{System.String:System.Object}",
- "typeSimple": "{string:object}",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationRequestOptions": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "IncludeLocalizationResources",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationFeatureConfigurationDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Values",
- "jsonName": null,
- "type": "{System.String:System.String}",
- "typeSimple": "{string:string}",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationGlobalFeatureConfigurationDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "EnabledFeatures",
- "jsonName": null,
- "type": "[System.String]",
- "typeSimple": "[string]",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationConfigurationDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Values",
- "jsonName": null,
- "type": "{System.String:System.Collections.Generic.Dictionary}",
- "typeSimple": "{string:System.Collections.Generic.Dictionary}",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Resources",
- "jsonName": null,
- "type": "{System.String:Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationResourceDto}",
- "typeSimple": "{string:Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationResourceDto}",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Languages",
- "jsonName": null,
- "type": "[Volo.Abp.Localization.LanguageInfo]",
- "typeSimple": "[Volo.Abp.Localization.LanguageInfo]",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "CurrentCulture",
- "jsonName": null,
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentCultureDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentCultureDto",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "DefaultResourceName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "LanguagesMap",
- "jsonName": null,
- "type": "{System.String:[Volo.Abp.NameValue]}",
- "typeSimple": "{string:[Volo.Abp.NameValue]}",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "LanguageFilesMap",
- "jsonName": null,
- "type": "{System.String:[Volo.Abp.NameValue]}",
- "typeSimple": "{string:[Volo.Abp.NameValue]}",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Resources",
- "jsonName": null,
- "type": "{System.String:Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationResourceDto}",
- "typeSimple": "{string:Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationResourceDto}",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationRequestDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "CultureName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "OnlyDynamics",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationResourceDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Texts",
- "jsonName": null,
- "type": "{System.String:System.String}",
- "typeSimple": "{string:string}",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "BaseResources",
- "jsonName": null,
- "type": "[System.String]",
- "typeSimple": "[string]",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationSettingConfigurationDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Values",
- "jsonName": null,
- "type": "{System.String:System.String}",
- "typeSimple": "{string:string}",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ClockDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Kind",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentCultureDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "DisplayName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "EnglishName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ThreeLetterIsoLanguageName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "TwoLetterIsoLanguageName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "IsRightToLeft",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "CultureName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "NativeName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "DateTimeFormat",
- "jsonName": null,
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.DateTimeFormatDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.DateTimeFormatDto",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentUserDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "IsAuthenticated",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Id",
- "jsonName": null,
- "type": "System.Guid?",
- "typeSimple": "string?",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "TenantId",
- "jsonName": null,
- "type": "System.Guid?",
- "typeSimple": "string?",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ImpersonatorUserId",
- "jsonName": null,
- "type": "System.Guid?",
- "typeSimple": "string?",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ImpersonatorTenantId",
- "jsonName": null,
- "type": "System.Guid?",
- "typeSimple": "string?",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ImpersonatorUserName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ImpersonatorTenantName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "UserName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "SurName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Email",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "EmailVerified",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "PhoneNumber",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "PhoneNumberVerified",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Roles",
- "jsonName": null,
- "type": "[System.String]",
- "typeSimple": "[string]",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.DateTimeFormatDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "CalendarAlgorithmType",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "DateTimeFormatLong",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ShortDatePattern",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "FullDateTimePattern",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "DateSeparator",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ShortTimePattern",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "LongTimePattern",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.IanaTimeZone": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "TimeZoneName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.EntityExtensionDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Properties",
- "jsonName": null,
- "type": "{System.String:Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyDto}",
- "typeSimple": "{string:Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyDto}",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Configuration",
- "jsonName": null,
- "type": "{System.String:System.Object}",
- "typeSimple": "{string:object}",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionEnumDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Fields",
- "jsonName": null,
- "type": "[Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionEnumFieldDto]",
- "typeSimple": "[Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionEnumFieldDto]",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "LocalizationResource",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionEnumFieldDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Value",
- "jsonName": null,
- "type": "System.Object",
- "typeSimple": "object",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiCreateDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "IsAvailable",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "OnGet",
- "jsonName": null,
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiGetDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiGetDto",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "OnCreate",
- "jsonName": null,
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiCreateDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiCreateDto",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "OnUpdate",
- "jsonName": null,
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiUpdateDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiUpdateDto",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiGetDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "IsAvailable",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiUpdateDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "IsAvailable",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyAttributeDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "TypeSimple",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Config",
- "jsonName": null,
- "type": "{System.String:System.Object}",
- "typeSimple": "{string:object}",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Type",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "TypeSimple",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "DisplayName",
- "jsonName": null,
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.LocalizableStringDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.LocalizableStringDto",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Api",
- "jsonName": null,
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiDto",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Ui",
- "jsonName": null,
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiDto",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Attributes",
- "jsonName": null,
- "type": "[Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyAttributeDto]",
- "typeSimple": "[Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyAttributeDto]",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Configuration",
- "jsonName": null,
- "type": "{System.String:System.Object}",
- "typeSimple": "{string:object}",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "DefaultValue",
- "jsonName": null,
- "type": "System.Object",
- "typeSimple": "object",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "OnTable",
- "jsonName": null,
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiTableDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiTableDto",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "OnCreateForm",
- "jsonName": null,
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiFormDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiFormDto",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "OnEditForm",
- "jsonName": null,
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiFormDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiFormDto",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Lookup",
- "jsonName": null,
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiLookupDto",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiLookupDto",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiFormDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "IsVisible",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiLookupDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Url",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ResultListPropertyName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "DisplayPropertyName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ValuePropertyName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "FilterParamName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiTableDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "IsVisible",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.LocalizableStringDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Resource",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ModuleExtensionDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Entities",
- "jsonName": null,
- "type": "{System.String:Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.EntityExtensionDto}",
- "typeSimple": "{string:Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.EntityExtensionDto}",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Configuration",
- "jsonName": null,
- "type": "{System.String:System.Object}",
- "typeSimple": "{string:object}",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ObjectExtensionsDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Modules",
- "jsonName": null,
- "type": "{System.String:Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ModuleExtensionDto}",
- "typeSimple": "{string:Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ModuleExtensionDto}",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Enums",
- "jsonName": null,
- "type": "{System.String:Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionEnumDto}",
- "typeSimple": "{string:Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionEnumDto}",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.TimeZone": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Iana",
- "jsonName": null,
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.IanaTimeZone",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.IanaTimeZone",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Windows",
- "jsonName": null,
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.WindowsTimeZone",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.WindowsTimeZone",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.TimingDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "TimeZone",
- "jsonName": null,
- "type": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.TimeZone",
- "typeSimple": "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.TimeZone",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.WindowsTimeZone": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "TimeZoneId",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.MultiTenancy.CurrentTenantDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Id",
- "jsonName": null,
- "type": "System.Guid?",
- "typeSimple": "string?",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "IsAvailable",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.MultiTenancy.FindTenantResultDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Success",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "TenantId",
- "jsonName": null,
- "type": "System.Guid?",
- "typeSimple": "string?",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "NormalizedName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "IsActive",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.AspNetCore.Mvc.MultiTenancy.MultiTenancyInfoDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "IsEnabled",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.FeatureManagement.FeatureDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "DisplayName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Value",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Provider",
- "jsonName": null,
- "type": "Volo.Abp.FeatureManagement.FeatureProviderDto",
- "typeSimple": "Volo.Abp.FeatureManagement.FeatureProviderDto",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Description",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ValueType",
- "jsonName": null,
- "type": "Volo.Abp.Validation.StringValues.IStringValueType",
- "typeSimple": "Volo.Abp.Validation.StringValues.IStringValueType",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Depth",
- "jsonName": null,
- "type": "System.Int32",
- "typeSimple": "number",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ParentName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.FeatureManagement.FeatureGroupDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "DisplayName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Features",
- "jsonName": null,
- "type": "[Volo.Abp.FeatureManagement.FeatureDto]",
- "typeSimple": "[Volo.Abp.FeatureManagement.FeatureDto]",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.FeatureManagement.FeatureProviderDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Key",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.FeatureManagement.GetFeatureListResultDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Groups",
- "jsonName": null,
- "type": "[Volo.Abp.FeatureManagement.FeatureGroupDto]",
- "typeSimple": "[Volo.Abp.FeatureManagement.FeatureGroupDto]",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.FeatureManagement.UpdateFeatureDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Value",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.FeatureManagement.UpdateFeaturesDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Features",
- "jsonName": null,
- "type": "[Volo.Abp.FeatureManagement.UpdateFeatureDto]",
- "typeSimple": "[Volo.Abp.FeatureManagement.UpdateFeatureDto]",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Http.Modeling.ActionApiDescriptionModel": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "UniqueName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "HttpMethod",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Url",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "SupportedVersions",
- "jsonName": null,
- "type": "[System.String]",
- "typeSimple": "[string]",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ParametersOnMethod",
- "jsonName": null,
- "type": "[Volo.Abp.Http.Modeling.MethodParameterApiDescriptionModel]",
- "typeSimple": "[Volo.Abp.Http.Modeling.MethodParameterApiDescriptionModel]",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Parameters",
- "jsonName": null,
- "type": "[Volo.Abp.Http.Modeling.ParameterApiDescriptionModel]",
- "typeSimple": "[Volo.Abp.Http.Modeling.ParameterApiDescriptionModel]",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ReturnValue",
- "jsonName": null,
- "type": "Volo.Abp.Http.Modeling.ReturnValueApiDescriptionModel",
- "typeSimple": "Volo.Abp.Http.Modeling.ReturnValueApiDescriptionModel",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "AllowAnonymous",
- "jsonName": null,
- "type": "System.Boolean?",
- "typeSimple": "boolean?",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ImplementFrom",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Http.Modeling.ApplicationApiDescriptionModel": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Modules",
- "jsonName": null,
- "type": "{System.String:Volo.Abp.Http.Modeling.ModuleApiDescriptionModel}",
- "typeSimple": "{string:Volo.Abp.Http.Modeling.ModuleApiDescriptionModel}",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Types",
- "jsonName": null,
- "type": "{System.String:Volo.Abp.Http.Modeling.TypeApiDescriptionModel}",
- "typeSimple": "{string:Volo.Abp.Http.Modeling.TypeApiDescriptionModel}",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Http.Modeling.ApplicationApiDescriptionModelRequestDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "IncludeTypes",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Http.Modeling.ControllerApiDescriptionModel": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "ControllerName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ControllerGroupName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "IsRemoteService",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "IsIntegrationService",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ApiVersion",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Type",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Interfaces",
- "jsonName": null,
- "type": "[Volo.Abp.Http.Modeling.ControllerInterfaceApiDescriptionModel]",
- "typeSimple": "[Volo.Abp.Http.Modeling.ControllerInterfaceApiDescriptionModel]",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Actions",
- "jsonName": null,
- "type": "{System.String:Volo.Abp.Http.Modeling.ActionApiDescriptionModel}",
- "typeSimple": "{string:Volo.Abp.Http.Modeling.ActionApiDescriptionModel}",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Http.Modeling.ControllerInterfaceApiDescriptionModel": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Type",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Methods",
- "jsonName": null,
- "type": "[Volo.Abp.Http.Modeling.InterfaceMethodApiDescriptionModel]",
- "typeSimple": "[Volo.Abp.Http.Modeling.InterfaceMethodApiDescriptionModel]",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Http.Modeling.InterfaceMethodApiDescriptionModel": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ParametersOnMethod",
- "jsonName": null,
- "type": "[Volo.Abp.Http.Modeling.MethodParameterApiDescriptionModel]",
- "typeSimple": "[Volo.Abp.Http.Modeling.MethodParameterApiDescriptionModel]",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ReturnValue",
- "jsonName": null,
- "type": "Volo.Abp.Http.Modeling.ReturnValueApiDescriptionModel",
- "typeSimple": "Volo.Abp.Http.Modeling.ReturnValueApiDescriptionModel",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Http.Modeling.MethodParameterApiDescriptionModel": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "TypeAsString",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Type",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "TypeSimple",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "IsOptional",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "DefaultValue",
- "jsonName": null,
- "type": "System.Object",
- "typeSimple": "object",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Http.Modeling.ModuleApiDescriptionModel": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "RootPath",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "RemoteServiceName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Controllers",
- "jsonName": null,
- "type": "{System.String:Volo.Abp.Http.Modeling.ControllerApiDescriptionModel}",
- "typeSimple": "{string:Volo.Abp.Http.Modeling.ControllerApiDescriptionModel}",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Http.Modeling.ParameterApiDescriptionModel": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "NameOnMethod",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "JsonName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Type",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "TypeSimple",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "IsOptional",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "DefaultValue",
- "jsonName": null,
- "type": "System.Object",
- "typeSimple": "object",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ConstraintTypes",
- "jsonName": null,
- "type": "[System.String]",
- "typeSimple": "[string]",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "BindingSourceId",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "DescriptorName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Http.Modeling.PropertyApiDescriptionModel": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "JsonName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Type",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "TypeSimple",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "IsRequired",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "MinLength",
- "jsonName": null,
- "type": "System.Int32?",
- "typeSimple": "number?",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "MaxLength",
- "jsonName": null,
- "type": "System.Int32?",
- "typeSimple": "number?",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Minimum",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Maximum",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Regex",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Http.Modeling.ReturnValueApiDescriptionModel": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Type",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "TypeSimple",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Http.Modeling.TypeApiDescriptionModel": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "BaseType",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "IsEnum",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "EnumNames",
- "jsonName": null,
- "type": "[System.String]",
- "typeSimple": "[string]",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "EnumValues",
- "jsonName": null,
- "type": "[System.Object]",
- "typeSimple": "[object]",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "GenericArguments",
- "jsonName": null,
- "type": "[System.String]",
- "typeSimple": "[string]",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Properties",
- "jsonName": null,
- "type": "[Volo.Abp.Http.Modeling.PropertyApiDescriptionModel]",
- "typeSimple": "[Volo.Abp.Http.Modeling.PropertyApiDescriptionModel]",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Identity.GetIdentityRolesInput": {
- "baseType": "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Filter",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Identity.GetIdentityUsersInput": {
- "baseType": "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Filter",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Identity.IdentityRoleCreateDto": {
- "baseType": "Volo.Abp.Identity.IdentityRoleCreateOrUpdateDtoBase",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": []
- },
- "Volo.Abp.Identity.IdentityRoleCreateOrUpdateDtoBase": {
- "baseType": "Volo.Abp.ObjectExtending.ExtensibleObject",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": 0,
- "maxLength": 256,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "IsDefault",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "IsPublic",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Identity.IdentityRoleDto": {
- "baseType": "Volo.Abp.Application.Dtos.ExtensibleEntityDto",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "IsDefault",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "IsStatic",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "IsPublic",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ConcurrencyStamp",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Identity.IdentityRoleUpdateDto": {
- "baseType": "Volo.Abp.Identity.IdentityRoleCreateOrUpdateDtoBase",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "ConcurrencyStamp",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Identity.IdentityUserCreateDto": {
- "baseType": "Volo.Abp.Identity.IdentityUserCreateOrUpdateDtoBase",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Password",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": 0,
- "maxLength": 128,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Identity.IdentityUserCreateOrUpdateDtoBase": {
- "baseType": "Volo.Abp.ObjectExtending.ExtensibleObject",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "UserName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": 0,
- "maxLength": 256,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": 0,
- "maxLength": 64,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Surname",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": 0,
- "maxLength": 64,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Email",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": 0,
- "maxLength": 256,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "PhoneNumber",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": 0,
- "maxLength": 16,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "IsActive",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "LockoutEnabled",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "RoleNames",
- "jsonName": null,
- "type": "[System.String]",
- "typeSimple": "[string]",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Identity.IdentityUserDto": {
- "baseType": "Volo.Abp.Application.Dtos.ExtensibleFullAuditedEntityDto",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "TenantId",
- "jsonName": null,
- "type": "System.Guid?",
- "typeSimple": "string?",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "UserName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Surname",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Email",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "EmailConfirmed",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "PhoneNumber",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "PhoneNumberConfirmed",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "IsActive",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "LockoutEnabled",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "AccessFailedCount",
- "jsonName": null,
- "type": "System.Int32",
- "typeSimple": "number",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "LockoutEnd",
- "jsonName": null,
- "type": "System.DateTimeOffset?",
- "typeSimple": "string?",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ConcurrencyStamp",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "EntityVersion",
- "jsonName": null,
- "type": "System.Int32",
- "typeSimple": "number",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "LastPasswordChangeTime",
- "jsonName": null,
- "type": "System.DateTimeOffset?",
- "typeSimple": "string?",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Identity.IdentityUserUpdateDto": {
- "baseType": "Volo.Abp.Identity.IdentityUserCreateOrUpdateDtoBase",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Password",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": 0,
- "maxLength": 128,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ConcurrencyStamp",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Identity.IdentityUserUpdateRolesDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "RoleNames",
- "jsonName": null,
- "type": "[System.String]",
- "typeSimple": "[string]",
- "isRequired": true,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Identity.UserLookupCountInputDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Filter",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Identity.UserLookupSearchInputDto": {
- "baseType": "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Filter",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Localization.LanguageInfo": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "CultureName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "UiCultureName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "DisplayName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "TwoLetterISOLanguageName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "FlagIcon",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.NameValue": {
- "baseType": "Volo.Abp.NameValue",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": []
- },
- "Volo.Abp.NameValue": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": [
- "T"
- ],
- "properties": [
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Value",
- "jsonName": null,
- "type": "T",
- "typeSimple": "T",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.ObjectExtending.ExtensibleObject": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "ExtraProperties",
- "jsonName": null,
- "type": "{System.String:System.Object}",
- "typeSimple": "{string:object}",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.PermissionManagement.GetPermissionListResultDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "EntityDisplayName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Groups",
- "jsonName": null,
- "type": "[Volo.Abp.PermissionManagement.PermissionGroupDto]",
- "typeSimple": "[Volo.Abp.PermissionManagement.PermissionGroupDto]",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.PermissionManagement.PermissionGrantInfoDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "DisplayName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ParentName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "IsGranted",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "AllowedProviders",
- "jsonName": null,
- "type": "[System.String]",
- "typeSimple": "[string]",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "GrantedProviders",
- "jsonName": null,
- "type": "[Volo.Abp.PermissionManagement.ProviderInfoDto]",
- "typeSimple": "[Volo.Abp.PermissionManagement.ProviderInfoDto]",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.PermissionManagement.PermissionGroupDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "DisplayName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "DisplayNameKey",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "DisplayNameResource",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Permissions",
- "jsonName": null,
- "type": "[Volo.Abp.PermissionManagement.PermissionGrantInfoDto]",
- "typeSimple": "[Volo.Abp.PermissionManagement.PermissionGrantInfoDto]",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.PermissionManagement.ProviderInfoDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "ProviderName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ProviderKey",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.PermissionManagement.UpdatePermissionDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "IsGranted",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.PermissionManagement.UpdatePermissionsDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Permissions",
- "jsonName": null,
- "type": "[Volo.Abp.PermissionManagement.UpdatePermissionDto]",
- "typeSimple": "[Volo.Abp.PermissionManagement.UpdatePermissionDto]",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.SettingManagement.EmailSettingsDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "SmtpHost",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "SmtpPort",
- "jsonName": null,
- "type": "System.Int32",
- "typeSimple": "number",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "SmtpUserName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "SmtpPassword",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "SmtpDomain",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "SmtpEnableSsl",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "SmtpUseDefaultCredentials",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "DefaultFromAddress",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "DefaultFromDisplayName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.SettingManagement.SendTestEmailInput": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "SenderEmailAddress",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "TargetEmailAddress",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Subject",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Body",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.SettingManagement.UpdateEmailSettingsDto": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "SmtpHost",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": 256,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "SmtpPort",
- "jsonName": null,
- "type": "System.Int32",
- "typeSimple": "number",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": "1",
- "maximum": "65535",
- "regex": null
- },
- {
- "name": "SmtpUserName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": 1024,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "SmtpPassword",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": 1024,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "SmtpDomain",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": 1024,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "SmtpEnableSsl",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "SmtpUseDefaultCredentials",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "DefaultFromAddress",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": null,
- "maxLength": 1024,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "DefaultFromDisplayName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": null,
- "maxLength": 1024,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.TenantManagement.GetTenantsInput": {
- "baseType": "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Filter",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.TenantManagement.TenantCreateDto": {
- "baseType": "Volo.Abp.TenantManagement.TenantCreateOrUpdateDtoBase",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "AdminEmailAddress",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": null,
- "maxLength": 256,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "AdminPassword",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": null,
- "maxLength": 128,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.TenantManagement.TenantCreateOrUpdateDtoBase": {
- "baseType": "Volo.Abp.ObjectExtending.ExtensibleObject",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": true,
- "minLength": 0,
- "maxLength": 64,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.TenantManagement.TenantDto": {
- "baseType": "Volo.Abp.Application.Dtos.ExtensibleEntityDto",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ConcurrencyStamp",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.TenantManagement.TenantUpdateDto": {
- "baseType": "Volo.Abp.TenantManagement.TenantCreateOrUpdateDtoBase",
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "ConcurrencyStamp",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Users.UserData": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Id",
- "jsonName": null,
- "type": "System.Guid",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "TenantId",
- "jsonName": null,
- "type": "System.Guid?",
- "typeSimple": "string?",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "UserName",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Surname",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "IsActive",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Email",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "EmailConfirmed",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "PhoneNumber",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "PhoneNumberConfirmed",
- "jsonName": null,
- "type": "System.Boolean",
- "typeSimple": "boolean",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "ExtraProperties",
- "jsonName": null,
- "type": "{System.String:System.Object}",
- "typeSimple": "{string:object}",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Validation.StringValues.IStringValueType": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Item",
- "jsonName": null,
- "type": "System.Object",
- "typeSimple": "object",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Properties",
- "jsonName": null,
- "type": "{System.String:System.Object}",
- "typeSimple": "{string:object}",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Validator",
- "jsonName": null,
- "type": "Volo.Abp.Validation.StringValues.IValueValidator",
- "typeSimple": "Volo.Abp.Validation.StringValues.IValueValidator",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- },
- "Volo.Abp.Validation.StringValues.IValueValidator": {
- "baseType": null,
- "isEnum": false,
- "enumNames": null,
- "enumValues": null,
- "genericArguments": null,
- "properties": [
- {
- "name": "Name",
- "jsonName": null,
- "type": "System.String",
- "typeSimple": "string",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Item",
- "jsonName": null,
- "type": "System.Object",
- "typeSimple": "object",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- },
- {
- "name": "Properties",
- "jsonName": null,
- "type": "{System.String:System.Object}",
- "typeSimple": "{string:object}",
- "isRequired": false,
- "minLength": null,
- "maxLength": null,
- "minimum": null,
- "maximum": null,
- "regex": null
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/angular/src/app/proxy/index.ts b/angular/src/app/proxy/index.ts
deleted file mode 100644
index 9d3f6c1..0000000
--- a/angular/src/app/proxy/index.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import * as Authors from './authors';
-import * as BookIssued from './book-issued';
-import * as Books from './books';
-import * as Customers from './customers';
-export { Authors, BookIssued, Books, Customers };
diff --git a/angular/src/app/route.provider.ts b/angular/src/app/route.provider.ts
index 634a368..73865df 100644
--- a/angular/src/app/route.provider.ts
+++ b/angular/src/app/route.provider.ts
@@ -15,39 +15,6 @@ function configureRoutes(routesService: RoutesService) {
order: 1,
layout: eLayoutType.application,
},
- {
- path: '/book-store',
- name: '::Menu:BookStore',
- iconClass: 'fas fa-book',
- order: 2,
- layout: eLayoutType.application,
- },
- {
- path: '/books',
- name: '::Menu:Books',
- parentName: '::Menu:BookStore',
- layout: eLayoutType.application,
- requiredPolicy: 'BookStore.Books',
- },
-
-
-
- {
- path: '/customer',
- name: 'Customer',
- iconClass: 'fas fa-user',
- order: 2,
- layout: eLayoutType.application,
- requiredPolicy: 'BookStore.Customers',
- },
- {
- path: '/book-issue',
- name: 'book-issue',
- iconClass: 'fas fa-book',
- order: 2,
- layout: eLayoutType.application,
- requiredPolicy: 'BookStore.BookIssued',
- },
]);
};
}
diff --git a/angular/src/assets/icons/icon-128x128.png b/angular/src/assets/icons/icon-128x128.png
new file mode 100644
index 0000000..9f9241f
Binary files /dev/null and b/angular/src/assets/icons/icon-128x128.png differ
diff --git a/angular/src/assets/icons/icon-144x144.png b/angular/src/assets/icons/icon-144x144.png
new file mode 100644
index 0000000..4a5f8c1
Binary files /dev/null and b/angular/src/assets/icons/icon-144x144.png differ
diff --git a/angular/src/assets/icons/icon-152x152.png b/angular/src/assets/icons/icon-152x152.png
new file mode 100644
index 0000000..34a1a8d
Binary files /dev/null and b/angular/src/assets/icons/icon-152x152.png differ
diff --git a/angular/src/assets/icons/icon-192x192.png b/angular/src/assets/icons/icon-192x192.png
new file mode 100644
index 0000000..9172e5d
Binary files /dev/null and b/angular/src/assets/icons/icon-192x192.png differ
diff --git a/angular/src/assets/icons/icon-384x384.png b/angular/src/assets/icons/icon-384x384.png
new file mode 100644
index 0000000..e54e8d3
Binary files /dev/null and b/angular/src/assets/icons/icon-384x384.png differ
diff --git a/angular/src/assets/icons/icon-512x512.png b/angular/src/assets/icons/icon-512x512.png
new file mode 100644
index 0000000..51ee297
Binary files /dev/null and b/angular/src/assets/icons/icon-512x512.png differ
diff --git a/angular/src/assets/icons/icon-72x72.png b/angular/src/assets/icons/icon-72x72.png
new file mode 100644
index 0000000..2814a3f
Binary files /dev/null and b/angular/src/assets/icons/icon-72x72.png differ
diff --git a/angular/src/assets/icons/icon-96x96.png b/angular/src/assets/icons/icon-96x96.png
new file mode 100644
index 0000000..d271025
Binary files /dev/null and b/angular/src/assets/icons/icon-96x96.png differ
diff --git a/angular/src/environments/environment.prod.ts b/angular/src/environments/environment.prod.ts
index 991abd3..28cf17b 100644
--- a/angular/src/environments/environment.prod.ts
+++ b/angular/src/environments/environment.prod.ts
@@ -10,7 +10,7 @@ export const environment = {
logoUrl: '',
},
oAuthConfig: {
- issuer: 'https://localhost:44356/',
+ issuer: 'https://localhost:44362/',
redirectUri: baseUrl,
clientId: 'BookStore_App',
responseType: 'code',
@@ -19,7 +19,7 @@ export const environment = {
},
apis: {
default: {
- url: 'https://localhost:44356',
+ url: 'https://localhost:44362',
rootNamespace: 'Acme.BookStore',
},
},
diff --git a/angular/src/environments/environment.ts b/angular/src/environments/environment.ts
index f6ffe48..e022dc1 100644
--- a/angular/src/environments/environment.ts
+++ b/angular/src/environments/environment.ts
@@ -10,7 +10,7 @@ export const environment = {
logoUrl: '',
},
oAuthConfig: {
- issuer: 'https://localhost:44356/',
+ issuer: 'https://localhost:44362/',
redirectUri: baseUrl,
clientId: 'BookStore_App',
responseType: 'code',
@@ -19,7 +19,7 @@ export const environment = {
},
apis: {
default: {
- url: 'https://localhost:44356',
+ url: 'https://localhost:44362',
rootNamespace: 'Acme.BookStore',
},
},
diff --git a/angular/src/index.html b/angular/src/index.html
index 4d9b591..a8dd4a6 100644
--- a/angular/src/index.html
+++ b/angular/src/index.html
@@ -1,16 +1,19 @@
-
+
BookStore
-
+
-
-
-
+
+
+
+
+
-
+
+