feat: bump more deps (#14079)

This commit is contained in:
DarkSky
2025-12-10 16:02:28 +08:00
committed by GitHub
parent 40f3337d45
commit cb0ff04efa
194 changed files with 2155 additions and 2297 deletions
@@ -77,9 +77,10 @@ class CreateChatSessionInput {
}
@InputType()
class UpdateChatSessionInput
implements Omit<UpdateChatSession, 'userId' | 'title'>
{
class UpdateChatSessionInput implements Omit<
UpdateChatSession,
'userId' | 'title'
> {
@Field(() => String)
sessionId!: string;
@@ -58,8 +58,10 @@ export interface SearchQueryDSL extends BaseQueryDSL {
};
}
export interface TopHitsDSL
extends Omit<SearchQueryDSL, 'query' | 'sort' | 'from' | 'cursor'> {}
export interface TopHitsDSL extends Omit<
SearchQueryDSL,
'query' | 'sort' | 'from' | 'cursor'
> {}
export interface AggregateQueryDSL extends BaseQueryDSL {
aggs: {