@squidcloud/client 1.0.308 → 1.0.309
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.
|
@@ -20,13 +20,17 @@ export interface MmEntity {
|
|
|
20
20
|
/**
|
|
21
21
|
* Represents a matchmaker.
|
|
22
22
|
* The description is used to describe the matchmaker and by the AI to better understand the domain.
|
|
23
|
-
* The
|
|
23
|
+
* The categories represent the types of entities that can be matched (it is possible to match items in the same
|
|
24
|
+
* category).
|
|
24
25
|
*/
|
|
25
26
|
export interface MmMatchMaker {
|
|
26
27
|
id: string;
|
|
27
28
|
description: string;
|
|
28
|
-
|
|
29
|
-
|
|
29
|
+
/** @deprecated */
|
|
30
|
+
firstCategory?: MmCategory;
|
|
31
|
+
/** @deprecated */
|
|
32
|
+
secondCategory?: MmCategory;
|
|
33
|
+
categories: Array<MmCategory>;
|
|
30
34
|
}
|
|
31
35
|
/**
|
|
32
36
|
* Represents a matchmaker entity match. A high score indicates a good match.
|
|
@@ -44,6 +48,11 @@ export interface MmFindMatchesOptions {
|
|
|
44
48
|
metadataFilter?: AiContextMetadataFilter;
|
|
45
49
|
/** The maximum number of matches to return - default: 100, max: 100 */
|
|
46
50
|
limit?: number;
|
|
51
|
+
/**
|
|
52
|
+
* The category to match the entities to - defaults to the next category provided in the matchmaker or the first one
|
|
53
|
+
* if there is no next.
|
|
54
|
+
*/
|
|
55
|
+
matchToCategoryId?: string;
|
|
47
56
|
}
|
|
48
57
|
/**
|
|
49
58
|
* Represents options for listing entities.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SQUIDCLOUD_CLIENT_PACKAGE_VERSION = "1.0.
|
|
1
|
+
export declare const SQUIDCLOUD_CLIENT_PACKAGE_VERSION = "1.0.309";
|