chore(frontend): regenerate API types with DocumentSearchItem and updated DocumentSearchResult
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1951,13 +1951,17 @@ export interface components {
|
|||||||
/** Format: int32 */
|
/** Format: int32 */
|
||||||
totalPages?: number;
|
totalPages?: number;
|
||||||
};
|
};
|
||||||
|
DocumentSearchItem: {
|
||||||
|
document: components["schemas"]["Document"];
|
||||||
|
matchData: components["schemas"]["SearchMatchData"];
|
||||||
|
/** Format: int32 */
|
||||||
|
completionPercentage: number;
|
||||||
|
contributors: components["schemas"]["ActivityActorDTO"][];
|
||||||
|
};
|
||||||
DocumentSearchResult: {
|
DocumentSearchResult: {
|
||||||
documents: components["schemas"]["Document"][];
|
items: components["schemas"]["DocumentSearchItem"][];
|
||||||
/** Format: int64 */
|
/** Format: int64 */
|
||||||
total: number;
|
total: number;
|
||||||
matchData: {
|
|
||||||
[key: string]: components["schemas"]["SearchMatchData"];
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
MatchOffset: {
|
MatchOffset: {
|
||||||
/** Format: int32 */
|
/** Format: int32 */
|
||||||
@@ -4451,7 +4455,3 @@ export interface operations {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
export type DashboardResumeDTO = components['schemas']['DashboardResumeDTO'];
|
|
||||||
export type DashboardPulseDTO = components['schemas']['DashboardPulseDTO'];
|
|
||||||
export type ActivityFeedItemDTO = components['schemas']['ActivityFeedItemDTO'];
|
|
||||||
|
|||||||
Reference in New Issue
Block a user