update api-report.md

Signed-off-by: shmaram <shaharshmaram@gmail.com>
This commit is contained in:
shmaram
2024-01-26 12:59:55 +02:00
parent c47460ba98
commit 877efd01ca
+7 -1
View File
@@ -169,6 +169,9 @@ export const homePlugin: BackstagePlugin<
{}
>;
// @public
export const isOperator: (s: string) => s is Operators;
// @public
export type LayoutConfiguration = {
component: ReactElement | string;
@@ -181,6 +184,9 @@ export type LayoutConfiguration = {
resizable?: boolean;
};
// @public
export type Operators = '<' | '<=' | '==' | '!=' | '>' | '>=' | 'contains';
// @public @deprecated (undocumented)
export type RendererProps = RendererProps_2;
@@ -271,7 +277,7 @@ export type VisitsApiQueryParams = {
}>;
filterBy?: Array<{
field: keyof Visit;
operator: '<' | '<=' | '==' | '!=' | '>' | '>=' | 'contains';
operator: Operators;
value: string | number;
}>;
};