@memberjunction/core-entities 2.84.0 → 2.85.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -6167,7 +6167,10 @@ export declare const QuerySchema: z.ZodObject<{
|
|
|
6167
6167
|
CacheEnabled: z.ZodBoolean;
|
|
6168
6168
|
CacheTTLMinutes: z.ZodNullable<z.ZodNumber>;
|
|
6169
6169
|
CacheMaxSize: z.ZodNullable<z.ZodNumber>;
|
|
6170
|
+
EmbeddingVector: z.ZodNullable<z.ZodString>;
|
|
6171
|
+
EmbeddingModelID: z.ZodNullable<z.ZodString>;
|
|
6170
6172
|
Category: z.ZodNullable<z.ZodString>;
|
|
6173
|
+
EmbeddingModel: z.ZodNullable<z.ZodString>;
|
|
6171
6174
|
}, "strip", z.ZodTypeAny, {
|
|
6172
6175
|
ID?: string;
|
|
6173
6176
|
__mj_CreatedAt?: Date;
|
|
@@ -6189,6 +6192,9 @@ export declare const QuerySchema: z.ZodObject<{
|
|
|
6189
6192
|
CacheEnabled?: boolean;
|
|
6190
6193
|
CacheTTLMinutes?: number;
|
|
6191
6194
|
CacheMaxSize?: number;
|
|
6195
|
+
EmbeddingVector?: string;
|
|
6196
|
+
EmbeddingModelID?: string;
|
|
6197
|
+
EmbeddingModel?: string;
|
|
6192
6198
|
}, {
|
|
6193
6199
|
ID?: string;
|
|
6194
6200
|
__mj_CreatedAt?: Date;
|
|
@@ -6210,6 +6216,9 @@ export declare const QuerySchema: z.ZodObject<{
|
|
|
6210
6216
|
CacheEnabled?: boolean;
|
|
6211
6217
|
CacheTTLMinutes?: number;
|
|
6212
6218
|
CacheMaxSize?: number;
|
|
6219
|
+
EmbeddingVector?: string;
|
|
6220
|
+
EmbeddingModelID?: string;
|
|
6221
|
+
EmbeddingModel?: string;
|
|
6213
6222
|
}>;
|
|
6214
6223
|
export type QueryEntityType = z.infer<typeof QuerySchema>;
|
|
6215
6224
|
/**
|
|
@@ -26033,11 +26042,34 @@ export declare class QueryEntity extends BaseEntity<QueryEntityType> {
|
|
|
26033
26042
|
get CacheMaxSize(): number | null;
|
|
26034
26043
|
set CacheMaxSize(value: number | null);
|
|
26035
26044
|
/**
|
|
26045
|
+
* * Field Name: EmbeddingVector
|
|
26046
|
+
* * Display Name: Embedding Vector
|
|
26047
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
26048
|
+
* * Description: Optional JSON-serialized embedding vector for the query, used for similarity search and query analysis
|
|
26049
|
+
*/
|
|
26050
|
+
get EmbeddingVector(): string | null;
|
|
26051
|
+
set EmbeddingVector(value: string | null);
|
|
26052
|
+
/**
|
|
26053
|
+
* * Field Name: EmbeddingModelID
|
|
26054
|
+
* * Display Name: Embedding Model ID
|
|
26055
|
+
* * SQL Data Type: uniqueidentifier
|
|
26056
|
+
* * Related Entity/Foreign Key: AI Models (vwAIModels.ID)
|
|
26057
|
+
* * Description: The AI Model used to generate the embedding vector for this query. Required for vector similarity comparisons.
|
|
26058
|
+
*/
|
|
26059
|
+
get EmbeddingModelID(): string | null;
|
|
26060
|
+
set EmbeddingModelID(value: string | null);
|
|
26061
|
+
/**
|
|
26036
26062
|
* * Field Name: Category
|
|
26037
26063
|
* * Display Name: Category
|
|
26038
26064
|
* * SQL Data Type: nvarchar(50)
|
|
26039
26065
|
*/
|
|
26040
26066
|
get Category(): string | null;
|
|
26067
|
+
/**
|
|
26068
|
+
* * Field Name: EmbeddingModel
|
|
26069
|
+
* * Display Name: Embedding Model
|
|
26070
|
+
* * SQL Data Type: nvarchar(50)
|
|
26071
|
+
*/
|
|
26072
|
+
get EmbeddingModel(): string | null;
|
|
26041
26073
|
}
|
|
26042
26074
|
/**
|
|
26043
26075
|
* Query Categories - strongly typed entity sub-class
|