@relevanceai/sdk 1.86.0 → 1.88.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.
|
@@ -6828,6 +6828,14 @@ export interface components {
|
|
|
6828
6828
|
/** @description Status of the workflow. Used for knowing when to send an email notification. */
|
|
6829
6829
|
status?: "complete" | "inprogress" | "failed";
|
|
6830
6830
|
job_status?: "InProgress" | "Completed" | "Failed";
|
|
6831
|
+
worker_status?: {
|
|
6832
|
+
[key: string]: {
|
|
6833
|
+
status?: "complete" | "inprogress" | "failed";
|
|
6834
|
+
completion_time?: string;
|
|
6835
|
+
creation_time?: string;
|
|
6836
|
+
};
|
|
6837
|
+
};
|
|
6838
|
+
n_workers?: number;
|
|
6831
6839
|
} & {
|
|
6832
6840
|
[key: string]: unknown;
|
|
6833
6841
|
})[];
|
|
@@ -6850,6 +6858,14 @@ export interface components {
|
|
|
6850
6858
|
/** @description Status of the workflow. Used for knowing when to send an email notification. */
|
|
6851
6859
|
status?: "complete" | "inprogress" | "failed";
|
|
6852
6860
|
job_status?: "InProgress" | "Completed" | "Failed";
|
|
6861
|
+
worker_status?: {
|
|
6862
|
+
[key: string]: {
|
|
6863
|
+
status?: "complete" | "inprogress" | "failed";
|
|
6864
|
+
completion_time?: string;
|
|
6865
|
+
creation_time?: string;
|
|
6866
|
+
};
|
|
6867
|
+
};
|
|
6868
|
+
n_workers?: number;
|
|
6853
6869
|
} & {
|
|
6854
6870
|
[key: string]: unknown;
|
|
6855
6871
|
};
|
|
@@ -6878,6 +6894,7 @@ export interface components {
|
|
|
6878
6894
|
* @default true
|
|
6879
6895
|
*/
|
|
6880
6896
|
send_email?: boolean;
|
|
6897
|
+
worker_number?: number;
|
|
6881
6898
|
};
|
|
6882
6899
|
UpsertWorkflowStatusOutput: unknown;
|
|
6883
6900
|
ListWorkflowTypesInput: unknown;
|
package/package.json
CHANGED