Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/open-api/types/search.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2740,6 +2740,11 @@ export interface components {
q?: string;
advanced?: boolean;
q_settings?: components["schemas"]["QSettings"];
/**
* @description Set to true to allow this operation to return data with visibility which does not include the current user. Only allowed for index admins and owners.
* @default false
*/
bypass_visible_to: boolean;

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I confirmed with Stephen that this should be optional, but is also the only property with an explicit default. I can't remember how (or if) this was settled with the GCS team.

@jbottigliero jbottigliero Aug 17, 2026

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If the type is used, it should be overridden at the call with the proper optional flag, not sure if we have a DeleteByQueryV1 method...

filters?: components["schemas"]["GFilterV1"][];
};
DeleteByQuery: components["schemas"]["GSearchRequestBody2017"] | components["schemas"]["DeleteByQueryV1"];
Expand Down
Loading