chore: workspace entity search endpoint (#6272)

* chore: workspace entity search endpoint

* fix: editor entity search endpoint

* chore: restrict guest users

---------

Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
This commit is contained in:
Bavisetti Narayan 2024-12-26 15:00:32 +05:30 committed by GitHub
parent 2d9464e841
commit f54f3a6091
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 481 additions and 233 deletions

View file

@ -76,6 +76,8 @@ export type TSearchResponse = {
export type TSearchEntityRequestPayload = {
count: number;
project_id?: string;
query_type: TSearchEntities[];
query: string;
team_id?: string;
};