@relevanceai/sdk 1.45.0 → 1.47.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: string;
930
+ user_id?: string;
921
931
  permissions?: {
922
932
  items: {
923
933
  [key: string]: {
@@ -3874,7 +3884,18 @@ export interface components {
3874
3884
  };
3875
3885
  };
3876
3886
  };
3877
- ListUsersInOrganizationInput: unknown;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@relevanceai/sdk",
3
- "version": "1.45.0",
3
+ "version": "1.47.0",
4
4
  "description": "Javascript client for RelevanceAI APIs. Browser, Node.js and typescript support.",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "types": "./dist-types/index.d.ts",