randmar-api-client 1.136.0 → 1.138.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.
|
@@ -5730,6 +5730,7 @@ export type JobHeader = {
|
|
|
5730
5730
|
Description?: string | null;
|
|
5731
5731
|
Type?: string | null;
|
|
5732
5732
|
CreatedAt?: number;
|
|
5733
|
+
ScheduledTime?: number;
|
|
5733
5734
|
ApplicationId?: string | null;
|
|
5734
5735
|
Comment?: string | null;
|
|
5735
5736
|
FileNames?: string[] | null;
|
|
@@ -5742,10 +5743,11 @@ export type Job = {
|
|
|
5742
5743
|
Header?: JobHeader;
|
|
5743
5744
|
Body?: any | null;
|
|
5744
5745
|
Logs?: JobLog[] | null;
|
|
5745
|
-
|
|
5746
|
+
Result?: string | null;
|
|
5746
5747
|
};
|
|
5747
5748
|
export type CreatePartnerAssistantJobInput = {
|
|
5748
5749
|
Prompt?: string | null;
|
|
5750
|
+
OwnerEmail?: string | null;
|
|
5749
5751
|
Files?: string[] | null;
|
|
5750
5752
|
SopIds?: string[] | null;
|
|
5751
5753
|
};
|