@relevanceai/sdk 1.39.0 → 1.40.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.
|
@@ -7389,10 +7389,20 @@ export interface components {
|
|
|
7389
7389
|
ListFieldChildrensOutput: {
|
|
7390
7390
|
results: {
|
|
7391
7391
|
_id?: string;
|
|
7392
|
+
field?: string;
|
|
7393
|
+
field_children?: string[];
|
|
7394
|
+
metadata?: {
|
|
7395
|
+
[key: string]: unknown;
|
|
7396
|
+
};
|
|
7392
7397
|
}[];
|
|
7393
7398
|
};
|
|
7394
7399
|
UpdateFieldChildrenInput: {
|
|
7395
7400
|
_id?: string;
|
|
7401
|
+
field?: string;
|
|
7402
|
+
field_children?: string[];
|
|
7403
|
+
metadata?: {
|
|
7404
|
+
[key: string]: unknown;
|
|
7405
|
+
};
|
|
7396
7406
|
};
|
|
7397
7407
|
UpdateFieldChildrenOutput: unknown;
|
|
7398
7408
|
DeleteFavouriteWorkflowInput: unknown;
|
package/package.json
CHANGED