@relevanceai/sdk 1.22.0 → 1.23.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,7 +622,10 @@ export interface components {
|
|
|
622
622
|
};
|
|
623
623
|
};
|
|
624
624
|
CreateUserInput: {
|
|
625
|
-
|
|
625
|
+
first_name?: string;
|
|
626
|
+
last_name?: string;
|
|
627
|
+
role?: string;
|
|
628
|
+
company?: string;
|
|
626
629
|
referral_code?: string;
|
|
627
630
|
permissions?: components["schemas"]["permissions"];
|
|
628
631
|
/** @description The name of the project. This will contain all your datasets. */
|
|
@@ -643,7 +646,10 @@ export interface components {
|
|
|
643
646
|
};
|
|
644
647
|
ListUsersOutput: {
|
|
645
648
|
results: {
|
|
646
|
-
|
|
649
|
+
first_name?: string;
|
|
650
|
+
last_name?: string;
|
|
651
|
+
role?: string;
|
|
652
|
+
company?: string;
|
|
647
653
|
permissions: {
|
|
648
654
|
projects: {
|
|
649
655
|
[key: string]: {
|
|
@@ -713,7 +719,10 @@ export interface components {
|
|
|
713
719
|
};
|
|
714
720
|
};
|
|
715
721
|
GetAuthHeaderInfoOutput: {
|
|
716
|
-
|
|
722
|
+
first_name?: string;
|
|
723
|
+
last_name?: string;
|
|
724
|
+
role?: string;
|
|
725
|
+
company?: string;
|
|
717
726
|
user_id: string;
|
|
718
727
|
key_id: string;
|
|
719
728
|
permissions: components["schemas"]["fullUserPermissions"];
|
|
@@ -826,7 +835,10 @@ export interface components {
|
|
|
826
835
|
[key: string]: unknown;
|
|
827
836
|
};
|
|
828
837
|
GetUserOutput: {
|
|
829
|
-
|
|
838
|
+
first_name?: string;
|
|
839
|
+
last_name?: string;
|
|
840
|
+
role?: string;
|
|
841
|
+
company?: string;
|
|
830
842
|
permissions: {
|
|
831
843
|
projects: {
|
|
832
844
|
[key: string]: {
|
|
@@ -860,7 +872,10 @@ export interface components {
|
|
|
860
872
|
creator_user_id?: string;
|
|
861
873
|
};
|
|
862
874
|
UpdateUserInput: {
|
|
863
|
-
|
|
875
|
+
first_name?: string;
|
|
876
|
+
last_name?: string;
|
|
877
|
+
role?: string;
|
|
878
|
+
company?: string;
|
|
864
879
|
permissions?: components["schemas"]["permissions"];
|
|
865
880
|
/** @description The id token for a signed in account. This attaches the sign in account to the user. */
|
|
866
881
|
id_token?: string;
|
package/package.json
CHANGED