mirror of
https://github.com/langgenius/dify.git
synced 2026-08-02 10:46:38 +08:00
Signed-off-by: yyh <yuanyouhuilyz@gmail.com> Co-authored-by: 盐粒 Yanli <mail@yanli.one> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: zyssyz123 <916125788@qq.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: 盐粒 Yanli <yanli@dify.ai> Co-authored-by: 林玮 (Jade Lin) <linw1995@icloud.com>
21 lines
791 B
TypeScript
21 lines
791 B
TypeScript
import type { GetAgentData } from '@dify/contracts/api/console/agent/types.gen'
|
|
|
|
export type RosterSortBy = NonNullable<NonNullable<GetAgentData['query']>['sort_by']>
|
|
|
|
export const DEFAULT_ROSTER_SORT_BY = 'last_modified' satisfies RosterSortBy
|
|
|
|
export const ROSTER_SORT_BY_VALUES = [
|
|
DEFAULT_ROSTER_SORT_BY,
|
|
'recently_created',
|
|
'earliest_created',
|
|
] as const satisfies readonly RosterSortBy[]
|
|
|
|
export const rosterSortOptions: Array<{
|
|
value: RosterSortBy
|
|
labelKey: 'roster.sort.lastModified' | 'roster.sort.recentlyCreated' | 'roster.sort.earliestCreated'
|
|
}> = [
|
|
{ value: 'last_modified', labelKey: 'roster.sort.lastModified' },
|
|
{ value: 'recently_created', labelKey: 'roster.sort.recentlyCreated' },
|
|
{ value: 'earliest_created', labelKey: 'roster.sort.earliestCreated' },
|
|
]
|