2 changed files with 35 additions and 0 deletions
@ -1,3 +1,4 @@ |
|||||
export * from './applications'; |
export * from './applications'; |
||||
export * from './authorizations'; |
export * from './authorizations'; |
||||
export * from './scopes'; |
export * from './scopes'; |
||||
|
export * from './tokens'; |
||||
|
|||||
@ -0,0 +1,34 @@ |
|||||
|
import type { |
||||
|
ExtensibleAuditedEntityDto, |
||||
|
PagedAndSortedResultRequestDto, |
||||
|
} from '@abp/core'; |
||||
|
|
||||
|
interface OpenIddictTokenGetListInput extends PagedAndSortedResultRequestDto { |
||||
|
authorizationId?: string; |
||||
|
beginCreationTime?: string; |
||||
|
beginExpirationDate?: string; |
||||
|
clientId?: string; |
||||
|
endCreationTime?: string; |
||||
|
endExpirationDate?: string; |
||||
|
filter?: string; |
||||
|
referenceId?: string; |
||||
|
status?: string; |
||||
|
subject?: string; |
||||
|
type?: string; |
||||
|
} |
||||
|
|
||||
|
interface OpenIddictTokenDto extends ExtensibleAuditedEntityDto<string> { |
||||
|
applicationId?: string; |
||||
|
authorizationId?: string; |
||||
|
creationDate?: string; |
||||
|
expirationDate?: string; |
||||
|
payload?: string; |
||||
|
properties?: string; |
||||
|
redemptionDate?: string; |
||||
|
referenceId?: string; |
||||
|
status?: string; |
||||
|
subject?: string; |
||||
|
type?: string; |
||||
|
} |
||||
|
|
||||
|
export type { OpenIddictTokenDto, OpenIddictTokenGetListInput }; |
||||
Loading…
Reference in new issue