@relevanceai/sdk 1.43.0 → 1.45.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.
|
@@ -645,6 +645,7 @@ export interface components {
|
|
|
645
645
|
name?: string;
|
|
646
646
|
/** @description The description of the project */
|
|
647
647
|
description?: string;
|
|
648
|
+
organization_id: string;
|
|
648
649
|
};
|
|
649
650
|
CreateProjectOutput: {
|
|
650
651
|
project_id: string;
|
|
@@ -714,6 +715,8 @@ export interface components {
|
|
|
714
715
|
[key: string]: components["schemas"]["permissions"];
|
|
715
716
|
};
|
|
716
717
|
referral_code?: string;
|
|
718
|
+
organization_name?: string;
|
|
719
|
+
project_name?: string;
|
|
717
720
|
/** @description The name of the project. This will contain all your datasets. */
|
|
718
721
|
project?: string;
|
|
719
722
|
/** @description The id token for a signed in account. This attaches the sign in account to the user. */
|
|
@@ -723,6 +726,7 @@ export interface components {
|
|
|
723
726
|
user_id: string;
|
|
724
727
|
api_key: string;
|
|
725
728
|
project: string;
|
|
729
|
+
organization_id?: string;
|
|
726
730
|
};
|
|
727
731
|
ListUsersInput: {
|
|
728
732
|
/** @default 1 */
|
|
@@ -1069,6 +1073,8 @@ export interface components {
|
|
|
1069
1073
|
};
|
|
1070
1074
|
/** @description The id token for a signed in account. This attaches the sign in account to the user. */
|
|
1071
1075
|
id_token?: string;
|
|
1076
|
+
/** @description Set this to true to replace users permissions for project, rather than upserting */
|
|
1077
|
+
overwrite?: boolean;
|
|
1072
1078
|
};
|
|
1073
1079
|
UpdateUserOutput: {
|
|
1074
1080
|
[key: string]: unknown;
|
|
@@ -7390,7 +7396,7 @@ export interface components {
|
|
|
7390
7396
|
};
|
|
7391
7397
|
notebook_path: string;
|
|
7392
7398
|
instance_type?: string;
|
|
7393
|
-
dataset_id
|
|
7399
|
+
dataset_id: string;
|
|
7394
7400
|
};
|
|
7395
7401
|
TriggerWorkflowOutput: {
|
|
7396
7402
|
job_id: string;
|
package/package.json
CHANGED