Skip to content

Commit 3987d51

Browse files
antas-marcinaliszka
authored andcommitted
Regenerated schema
1 parent 85fc9f5 commit 3987d51

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

src/openapi/schema.ts

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ export interface definitions {
202202
* @example foobarium
203203
*/
204204
concept?: string;
205-
/** @description A list of space-delimited words or a sentence describing what the custom concept is about. Avoid using the custom concept itself. An Example definition for the custom concept 'foobarium': would be 'a naturally occourring element which can only be seen by programmers' */
205+
/** @description A list of space-delimited words or a sentence describing what the custom concept is about. Avoid using the custom concept itself. An Example definition for the custom concept 'foobarium': would be 'a naturally occurring element which can only be seen by programmers' */
206206
definition?: string;
207207
/**
208208
* Format: float
@@ -451,13 +451,17 @@ export interface definitions {
451451
moduleConfig?: { [key: string]: unknown };
452452
/** @description Name of the property as URI relative to the schema URL. */
453453
name?: string;
454-
/** @description Optional. Should this property be indexed in the inverted index. Defaults to true. If you choose false, you will not be able to use this property in where filters. This property has no affect on vectorization decisions done by modules */
454+
/** @description Optional. Should this property be indexed in the inverted index. Defaults to true. If you choose false, you will not be able to use this property in where filters, bm25 or hybrid search. This property has no affect on vectorization decisions done by modules (deprecated as of v1.19; use indexFilterable or/and indexSearchable instead) */
455455
indexInverted?: boolean;
456+
/** @description Optional. Should this property be indexed in the inverted index. Defaults to true. If you choose false, you will not be able to use this property in where filters. This property has no affect on vectorization decisions done by modules */
457+
indexFilterable?: boolean;
458+
/** @description Optional. Should this property be indexed in the inverted index. Defaults to true. Applicable only to properties of data type text and text[]. If you choose false, you will not be able to use this property in bm25 or hybrid search. This property has no affect on vectorization decisions done by modules */
459+
indexSearchable?: boolean;
456460
/**
457-
* @description Determines tokenization of the property as separate words or whole field. Optional. Applies to string, string[], text and text[] data types. Allowed values are `word` (default) and `field` for string and string[], `word` (default) for text and text[]. Not supported for remaining data types
461+
* @description Determines tokenization of the property as separate words or whole field. Optional. Applies to text and text[] data types. Allowed values are `word` (default; splits on any non-alphanumerical, lowercases), `lowercase` (splits on white spaces, lowercases), `whitespace` (splits on white spaces), `field` (trims). Not supported for remaining data types
458462
* @enum {string}
459463
*/
460-
tokenization?: 'word' | 'field';
464+
tokenization?: 'word' | 'lowercase' | 'whitespace' | 'field';
461465
};
462466
/** @description The status of all the shards of a Class */
463467
ShardStatusList: definitions['ShardStatusGetResponse'][];
@@ -651,7 +655,7 @@ export interface definitions {
651655
winningCount?: number;
652656
/**
653657
* Format: int64
654-
* @description size of the losing group, can be 0 if the winning group size euqals k
658+
* @description size of the losing group, can be 0 if the winning group size equals k
655659
*/
656660
losingCount?: number;
657661
/**
@@ -1017,12 +1021,12 @@ export interface definitions {
10171021
*/
10181022
valueBoolean?: boolean;
10191023
/**
1020-
* @description value as string
1024+
* @description value as text (deprecated as of v1.19; alias for valueText)
10211025
* @example my search term
10221026
*/
10231027
valueString?: string;
10241028
/**
1025-
* @description value as text (on text props)
1029+
* @description value as text
10261030
* @example my search term
10271031
*/
10281032
valueText?: string;

0 commit comments

Comments
 (0)