@relevanceai/sdk 1.25.0 → 1.28.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.
@@ -622,6 +622,8 @@ export interface components {
622
622
  };
623
623
  };
624
624
  CreateUserInput: {
625
+ profile_picture_url?: string;
626
+ onboarded?: boolean;
625
627
  first_name?: string;
626
628
  last_name?: string;
627
629
  role?: string;
@@ -646,6 +648,8 @@ export interface components {
646
648
  };
647
649
  ListUsersOutput: {
648
650
  results: {
651
+ profile_picture_url?: string;
652
+ onboarded?: boolean;
649
653
  first_name?: string;
650
654
  last_name?: string;
651
655
  role?: string;
@@ -719,6 +723,8 @@ export interface components {
719
723
  };
720
724
  };
721
725
  GetAuthHeaderInfoOutput: {
726
+ profile_picture_url?: string;
727
+ onboarded?: boolean;
722
728
  first_name?: string;
723
729
  last_name?: string;
724
730
  role?: string;
@@ -835,6 +841,8 @@ export interface components {
835
841
  [key: string]: unknown;
836
842
  };
837
843
  GetUserOutput: {
844
+ profile_picture_url?: string;
845
+ onboarded?: boolean;
838
846
  first_name?: string;
839
847
  last_name?: string;
840
848
  role?: string;
@@ -872,6 +880,8 @@ export interface components {
872
880
  creator_user_id?: string;
873
881
  };
874
882
  UpdateUserInput: {
883
+ profile_picture_url?: string;
884
+ onboarded?: boolean;
875
885
  first_name?: string;
876
886
  last_name?: string;
877
887
  role?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@relevanceai/sdk",
3
- "version": "1.25.0",
3
+ "version": "1.28.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",