2 changed files with 42 additions and 0 deletions
@ -1,2 +1,3 @@ |
|||||
export * from './applications'; |
export * from './applications'; |
||||
export * from './authorizations'; |
export * from './authorizations'; |
||||
|
export * from './scopes'; |
||||
|
|||||
@ -0,0 +1,41 @@ |
|||||
|
import type { |
||||
|
Dictionary, |
||||
|
ExtensibleAuditedEntityDto, |
||||
|
ExtensibleObject, |
||||
|
PagedAndSortedResultRequestDto, |
||||
|
} from '@abp/core'; |
||||
|
|
||||
|
interface OpenIddictScopeCreateOrUpdateDto extends ExtensibleObject { |
||||
|
description?: string; |
||||
|
descriptions?: Dictionary<string, string>; |
||||
|
displayName?: string; |
||||
|
displayNames?: Dictionary<string, string>; |
||||
|
name: string; |
||||
|
properties?: Dictionary<string, string>; |
||||
|
resources?: string[]; |
||||
|
} |
||||
|
|
||||
|
type OpenIddictScopeCreateDto = OpenIddictScopeCreateOrUpdateDto; |
||||
|
|
||||
|
interface OpenIddictScopeGetListInput extends PagedAndSortedResultRequestDto { |
||||
|
filter?: string; |
||||
|
} |
||||
|
|
||||
|
type OpenIddictScopeUpdateDto = OpenIddictScopeCreateOrUpdateDto; |
||||
|
|
||||
|
interface OpenIddictScopeDto extends ExtensibleAuditedEntityDto<string> { |
||||
|
description?: string; |
||||
|
descriptions?: Dictionary<string, string>; |
||||
|
displayName?: string; |
||||
|
displayNames?: Dictionary<string, string>; |
||||
|
name: string; |
||||
|
properties?: Dictionary<string, string>; |
||||
|
resources?: string[]; |
||||
|
} |
||||
|
|
||||
|
export type { |
||||
|
OpenIddictScopeCreateDto, |
||||
|
OpenIddictScopeDto, |
||||
|
OpenIddictScopeGetListInput, |
||||
|
OpenIddictScopeUpdateDto, |
||||
|
}; |
||||
Loading…
Reference in new issue