@relevanceai/sdk 1.46.0 → 1.48.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.
|
@@ -756,6 +756,16 @@ export interface components {
|
|
|
756
756
|
};
|
|
757
757
|
};
|
|
758
758
|
};
|
|
759
|
+
/** @description Currently limited to exact_match, ids, exists, regexp filter_type */
|
|
760
|
+
filters?: {
|
|
761
|
+
strict?: "must" | "should" | "must_or";
|
|
762
|
+
condition?: string;
|
|
763
|
+
field?: string;
|
|
764
|
+
filter_type?: "text_match" | "word_match" | "term" | "terms" | "text" | "texts" | "match" | "contains" | "substring" | "class" | "category" | "exact_match" | "classes" | "categories" | "exists" | "traditional" | "fuzzy" | "regexp" | "ids" | "date" | "numeric" | "search" | "or" | "word_count" | "character_count";
|
|
765
|
+
condition_value?: unknown;
|
|
766
|
+
fuzzy?: number;
|
|
767
|
+
join?: boolean;
|
|
768
|
+
}[];
|
|
759
769
|
};
|
|
760
770
|
ListUsersOutput: {
|
|
761
771
|
results: {
|
|
@@ -917,7 +927,7 @@ export interface components {
|
|
|
917
927
|
ListProjectInvitesOutput: {
|
|
918
928
|
results: {
|
|
919
929
|
_id: string;
|
|
920
|
-
user_id
|
|
930
|
+
user_id?: string;
|
|
921
931
|
permissions?: {
|
|
922
932
|
items: {
|
|
923
933
|
[key: string]: {
|
|
@@ -987,7 +997,7 @@ export interface components {
|
|
|
987
997
|
invite_code: string;
|
|
988
998
|
};
|
|
989
999
|
ResendProjectInviteOutput: {
|
|
990
|
-
|
|
1000
|
+
invite_code: string;
|
|
991
1001
|
};
|
|
992
1002
|
GetUserInput: {
|
|
993
1003
|
[key: string]: unknown;
|
|
@@ -3874,7 +3884,18 @@ export interface components {
|
|
|
3874
3884
|
};
|
|
3875
3885
|
};
|
|
3876
3886
|
};
|
|
3877
|
-
ListUsersInOrganizationInput:
|
|
3887
|
+
ListUsersInOrganizationInput: {
|
|
3888
|
+
/** @description Currently limited to exact_match, ids, exists, regexp filter_type */
|
|
3889
|
+
filters?: {
|
|
3890
|
+
strict?: "must" | "should" | "must_or";
|
|
3891
|
+
condition?: string;
|
|
3892
|
+
field?: string;
|
|
3893
|
+
filter_type?: "text_match" | "word_match" | "term" | "terms" | "text" | "texts" | "match" | "contains" | "substring" | "class" | "category" | "exact_match" | "classes" | "categories" | "exists" | "traditional" | "fuzzy" | "regexp" | "ids" | "date" | "numeric" | "search" | "or" | "word_count" | "character_count";
|
|
3894
|
+
condition_value?: unknown;
|
|
3895
|
+
fuzzy?: number;
|
|
3896
|
+
join?: boolean;
|
|
3897
|
+
}[];
|
|
3898
|
+
};
|
|
3878
3899
|
ListUsersInOrganizationOutput: {
|
|
3879
3900
|
results: {
|
|
3880
3901
|
_id?: string;
|
package/package.json
CHANGED